Prepare to release v0.3.2 #8
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 # runs on arm64 | |
setup: echo "no setup" | |
build: cargo build | |
- host: macos-12 # runs on x86_64 | |
setup: echo "no setup" | |
build: cargo build | |
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 |