This repository was archived by the owner on Jun 18, 2026. It is now read-only.
chore: bump up all non-major dependencies #1997
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: native checks | |
| on: | |
| push: | |
| branches: [master, develop] | |
| pull_request: | |
| jobs: | |
| check-rust: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Install latest toolchain | |
| uses: actions-rs/toolchain@v1 | |
| with: | |
| default: true | |
| - uses: actions/cache@v3 | |
| with: | |
| path: | | |
| ~/.cargo/bin/ | |
| ~/.cargo/registry/index/ | |
| ~/.cargo/registry/cache/ | |
| ~/.cargo/git/db/ | |
| target/ | |
| key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
| - name: Check | |
| run: | | |
| cargo clippy --all-targets --all-features -- -D warnings | |
| cargo test |