Update typed-builder requirement from 0.10.0 to 0.18.2 #2
Workflow file for this run
This file contains 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: dynamic | |
on: pull_request | |
jobs: | |
check-build: | |
strategy: | |
matrix: | |
settings: | |
- host: windows-latest | |
setup: echo "no setup" | |
build: cargo build | |
- host: ubuntu-latest | |
setup: echo "no setup" | |
build: cargo build | |
- host: macos-latest | |
setup: rustup target add aarch64-apple-darwin && rustup target add x86_64-apple-darwin | |
build: cargo build --target aarch64-apple-darwin && cargo build --target x86_64-apple-darwin | |
runs-on: ${{ matrix.settings.host }} | |
name: test / ${{ matrix.settings.host }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
- uses: taiki-e/install-action@nextest | |
- uses: Swatinem/[email protected] | |
with: | |
key: ${{ matrix.settings.host }} | |
- run: ${{ matrix.settings.setup }} | |
- run: ${{ matrix.settings.build }} | |
- run: cargo check --release --all --bins --examples --tests | |
- run: cargo nextest run --all-targets | |
- run: cargo test --doc |