Skip to content

Fix clippy warnings and bump srp and aucpace MSRV to 1.61 #242

Fix clippy warnings and bump srp and aucpace MSRV to 1.61

Fix clippy warnings and bump srp and aucpace MSRV to 1.61 #242

Workflow file for this run

name: Workspace
on:
pull_request:
paths-ignore:
- README.md
push:
branches:
- master
paths-ignore:
- README.md
jobs:
clippy:
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- 1.60.0 # MSRV
- stable
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust }}
components: clippy
- run: cargo clippy --all --all-features -- -D warnings
rustfmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
components: rustfmt
- run: cargo fmt --all -- --check