Skip to content

ci: run workspace tests in bounded parallel targets #39

ci: run workspace tests in bounded parallel targets

ci: run workspace tests in bounded parallel targets #39

Workflow file for this run

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