Update to latest versions #51
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: Verify that all unit tests are succeeding | |
| on: push | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| projects: [ "2022", "2023", "2024", "shared" ] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Update Rust to nightly | |
| run: rustup update nightly && rustup default nightly | |
| - name: Setup Rust Cache | |
| uses: Swatinem/rust-cache@v2 | |
| - name: Run tests | |
| working-directory: ./${{ matrix.projects }} | |
| run: cargo test --tests --no-fail-fast |