summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorStephan Dilly <dilly.stephan@gmail.com>2020-04-23 19:48:30 +0200
committerStephan Dilly <dilly.stephan@gmail.com>2020-04-24 07:41:48 +0200
commit09df10cdbdb68bf4e31cf43d671bd51e61774658 (patch)
tree1eb54a140e3fb17e022ea180463b71e957cb0545 /.github
parentcc19fca6301dbe7ec7ccb460834537580cb3eebd (diff)
fix new clippy warning
Fix ci clippy task
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index ab6814cd..9b2a807e 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -24,7 +24,9 @@ jobs:
- name: Run tests
run: make test
- name: Run clippy
- run: make clippy
+ run: |
+ rustup component add clippy
+ make clippy
- name: Build Release
run: make build-release
- name: Build Win Test Release