build(deps): bump getrandom from 0.4.1 to 0.4.2 #238
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: Cargo Test and Format Check | |
| on: | |
| push: | |
| pull_request: | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| build_and_test: | |
| name: Rust project - latest | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| toolchain: | |
| - stable | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }} | |
| - run: rustup target add wasm32-unknown-unknown | |
| - run: cargo build -p kanash | |
| - run: cargo build --target wasm32-unknown-unknown -p kanash-ratzilla | |
| - run: cargo test --verbose --workspace --exclude kanash-ratzilla | |
| - run: cargo fmt --check |