release: finalize v0.1.1 record #46
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: | |
| permissions: | |
| contents: read | |
| jobs: | |
| rust: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 30 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install Rust toolchains | |
| run: | | |
| rustup toolchain install 1.85.1 --profile minimal | |
| rustup toolchain install 1.96.0 --profile minimal --component rustfmt,clippy | |
| - run: cargo +1.96.0 fmt --all --check | |
| - run: RUSTUP_TOOLCHAIN=1.85.1 tools/test-fast.sh | |
| - run: cargo +1.96.0 clippy --workspace --locked -- -D warnings |