Merge pull request #274 from nuttycom/beta_lints

Use beta lints instead of nightly.
This commit is contained in:
str4d 2022-02-01 16:01:57 +00:00 committed by GitHub
commit d270edaa14
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 5 deletions

View File

@ -5,8 +5,8 @@ name: Nightly lints
on: push
jobs:
clippy-nightly:
name: Clippy (nightly)
clippy-beta:
name: Clippy (beta)
timeout-minutes: 30
runs-on: ubuntu-latest
continue-on-error: true
@ -14,14 +14,14 @@ jobs:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
toolchain: beta
components: clippy
override: true
- name: Run Clippy (nightly)
- name: Run Clippy (beta)
uses: actions-rs/clippy-check@v1
continue-on-error: true
with:
name: Clippy (nightly)
name: Clippy (beta)
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features --all-targets