Skip to content

ci: separate MSRV tests from current lint #2

ci: separate MSRV tests from current lint

ci: separate MSRV tests from current lint #2

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 stable --profile minimal --component rustfmt,clippy
- run: cargo +stable fmt --all --check
- run: cargo +1.85.1 test --workspace --locked
- run: cargo +stable clippy --workspace --all-targets --locked -- -D warnings