chore(deps): update rust crate sha256 to v1.6.0 #231
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: {} | |
| jobs: | |
| ci: | |
| name: CI | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Configure Rust | |
| run: rustup toolchain install stable --profile minimal | |
| - name: Cache | |
| uses: Swatinem/rust-cache@v2 | |
| - name: Build | |
| run: cargo build --verbose | |
| - name: Lint | |
| run: cargo clippy --no-deps --frozen --all-features -- -Dwarnings | |
| - name: Check Formatting | |
| run: cargo fmt --check | |
| - name: Test | |
| run: cargo test --verbose |