Report errors on stale cache #7
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: Test | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| workflow_dispatch: | |
| env: | |
| CARGO_TERM_COLOR: always | |
| CARGO_INCREMENTAL: 0 | |
| CARGO_NET_RETRY: 10 | |
| RUST_BACKTRACE: short | |
| RUSTUP_MAX_RETRIES: 10 | |
| jobs: | |
| rust_tests: | |
| runs-on: ubuntu-latest | |
| concurrency: | |
| group: test-${{ github.ref }} | |
| cancel-in-progress: true | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: taiki-e/install-action@v2 | |
| with: | |
| tool: [email protected],[email protected] | |
| - uses: dtolnay/rust-toolchain@master | |
| with: | |
| toolchain: 1.89.0 | |
| components: rustfmt, clippy | |
| - name: Compile | |
| run: just cargo-compile | |
| - name: Lint | |
| run: just lint | |
| - name: Test | |
| run: just cargo-test |