Enables the parsing of elements defined in another namespace in Person constructs #291
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-latest | |
- macOS-latest | |
- windows-latest | |
rust: | |
- nightly | |
- beta | |
- stable | |
- 1.57.0 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@v1 | |
with: | |
toolchain: ${{ matrix.rust }} | |
- name: Build | |
run: | | |
cargo build --all-targets --no-default-features --verbose | |
cargo build --all-targets --verbose | |
- name: Run tests | |
run: | | |
cargo test --all-targets --no-default-features --verbose | |
cargo test --all-targets --verbose | |
env: | |
RUST_BACKTRACE: 1 |