Skip to content

Commit

Permalink
ci: Add clippy check
Browse files Browse the repository at this point in the history
  • Loading branch information
Skallwar committed Jan 22, 2022
1 parent c9eb641 commit 65279cc
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/clippy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Clippy

on:
pull_request:
branches:
- master
push:
branches:
- master

jobs:
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Rustup setup
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true

- uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features

0 comments on commit 65279cc

Please sign in to comment.