Skip to content

clippy

clippy #230

Workflow file for this run

name: clippy
on:
push:
pull_request:
branches:
- main
schedule:
# At 06:00am every Saturday (for new versions of clippy)
- cron: '0 6 * * 6'
jobs:
run_clippy_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: rustup component add clippy
- uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features