fix: type declaration order, typo, and improve variable clarity #1103
Workflow file for this run
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: Stable lints | |
# We only run these lints on trial-merges of PRs to reduce noise. | |
on: pull_request | |
jobs: | |
clippy: | |
name: Clippy (MSRV) | |
timeout-minutes: 30 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- id: prepare | |
uses: ./.github/actions/prepare | |
with: | |
nightly-features: true | |
- run: rustup component add clippy | |
- name: Run clippy | |
uses: actions-rs/clippy-check@v1 | |
with: | |
name: Clippy (MSRV) | |
token: ${{ secrets.GITHUB_TOKEN }} | |
args: > | |
${{ steps.prepare.outputs.feature-flags }} | |
--all-targets | |
-- -D warnings |