max_value() -> MAX #49
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: Test | |
on: | |
- push | |
- pull_request | |
jobs: | |
linux: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
- uses: actions/cache@v4 | |
with: | |
path: tables | |
key: ${{ runner.os }}-${{ hashFiles('tables/*/TEST-SOURCE.txt') }} | |
- run: ./download-test-tables.sh | |
- run: cargo test | |
- run: cargo test --features variant | |
- run: cargo test --all-features | |
- run: cargo bench | |
- run: cargo check --manifest-path fuzz/Cargo.toml | |
windows: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
- run: cargo check | |
- run: cargo check --features variant | |
- run: cargo check --all-features |