incrementalmerkletree/.github/workflows/lints-stable.yml

19 lines
455 B
YAML
Raw Normal View History

2022-02-23 20:29:25 -08:00
name: Stable lints
# We only run these lints on trial-merges of PRs to reduce noise.
on: pull_request
jobs:
clippy:
name: Clippy (MSRV)
2022-02-23 20:29:25 -08:00
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run clippy
2022-02-23 20:29:25 -08:00
uses: actions-rs/clippy-check@v1
with:
name: Clippy (MSRV)
2022-02-23 20:29:25 -08:00
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features --all-targets -- -D warnings