From 1d4403b497861d0d04e2f2c62be9807dcd425e90 Mon Sep 17 00:00:00 2001 From: epi Date: Thu, 3 Dec 2020 07:09:40 -0600 Subject: [PATCH] CI still doesnt like the new addr_of stuff, reverted --- .github/pull_request_template.md | 2 +- .github/workflows/check.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index cd06004..a399cce 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -11,7 +11,7 @@ Long form explanations of most of the items below can be found in the [CONTRIBUT ## Static analysis checks - [ ] All rust files are formatted using `cargo fmt` -- [ ] All `clippy` checks pass when running `cargo clippy --all-targets --all-features -- -D warnings` +- [ ] All `clippy` checks pass when running `cargo clippy --all-targets --all-features -- -D warnings -A clippy::deref_addrof` - [ ] All existing tests pass ## Documentation diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index a599025..2b9f46e 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -61,4 +61,4 @@ jobs: - uses: actions-rs/cargo@v1 with: command: clippy - args: --all-targets --all-features -- -D warnings + args: --all-targets --all-features -- -D warnings -A clippy::deref_addrof