aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/clippy-check.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/clippy-check.yml')
-rw-r--r--.github/workflows/clippy-check.yml12
1 files changed, 12 insertions, 0 deletions
diff --git a/.github/workflows/clippy-check.yml b/.github/workflows/clippy-check.yml
new file mode 100644
index 0000000..6010bf2
--- /dev/null
+++ b/.github/workflows/clippy-check.yml
@@ -0,0 +1,12 @@
+on: push
+name: Clippy check
+jobs:
+ clippy_check:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v1
+ - run: rustup component add clippy
+ - uses: actions-rs/clippy-check@v1
+ with:
+ token: ${{ secrets.GITHUB_TOKEN }}
+ args: --all-features