summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorDan Davison <dandavison7@gmail.com>2020-12-03 15:14:38 -0500
committerGitHub <noreply@github.com>2020-12-03 15:14:38 -0500
commit15d06cbf7584570ec3b5beaba99cb8898f9ec3dc (patch)
tree1e8a4f6d3469dd7718d837dfbda8d2d7c5b4ba80 /.github
parent8e65ea071a1fdfc34d5031ce1a5130e109d7bb5e (diff)
Disable some clippy warnings (#422)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml37
1 files changed, 18 insertions, 19 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index ed560153..bcad4b42 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -85,25 +85,24 @@ jobs:
command: fmt
args: --all -- --check
- # TODO enable this when there are no more clippy warnings:
- # clippy:
- # name: Clippy
- # runs-on: ubuntu-latest
- # steps:
- # - name: Checkout repository
- # uses: actions/checkout@v2
- # - name: Install Rust
- # uses: actions-rs/toolchain@v1
- # with:
- # toolchain: stable
- # profile: minimal
- # override: true
- # components: clippy
- # - name: Clippy Check
- # uses: actions-rs/cargo@v1
- # with:
- # command: clippy
- # args: -- -D warnings
+ clippy:
+ name: Clippy
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout repository
+ uses: actions/checkout@v2
+ - name: Install Rust
+ uses: actions-rs/toolchain@v1
+ with:
+ toolchain: stable
+ profile: minimal
+ override: true
+ components: clippy
+ - name: Clippy Check
+ uses: actions-rs/cargo@v1
+ with:
+ command: clippy
+ args: -- -D warnings
coverage:
name: Code coverage