fix: use full revision. #349
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: Checks and Tests | |
| on: | |
| push: | |
| jobs: | |
| run-nix-commands: | |
| uses: ./.github/workflows/nix-command.yml | |
| strategy: | |
| matrix: | |
| command: | |
| # cargo checks and tests | |
| - cargo check --all-targets | |
| - RUST_MIN_STACK=8388608 cargo test -- --nocapture | |
| with: | |
| command: ${{ matrix.command }} | |
| nix_flake_path: '.' |