From 89c06c953ae962455bc6ef91e0fa15f0193a1ed2 Mon Sep 17 00:00:00 2001 From: Michael Birch Date: Wed, 4 Aug 2021 15:31:10 +0000 Subject: [PATCH] Scheduled lint is supposed to run nightly clippy --- .github/workflows/scheduled_lints.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/scheduled_lints.yml b/.github/workflows/scheduled_lints.yml index eea60553a..ee79fa8a2 100644 --- a/.github/workflows/scheduled_lints.yml +++ b/.github/workflows/scheduled_lints.yml @@ -12,5 +12,7 @@ jobs: uses: actions/checkout@v2 - run: echo "$HOME/.cargo/bin" >> $GITHUB_PATH - run: make etc/eth-contracts/res/EvmErc20.bin + - name: Update toolchain + run: rustup update nightly - name: Run cargo clippy - run: cargo clippy --no-default-features --features=mainnet -- -D warnings + run: cargo +nightly clippy --no-default-features --features=mainnet -- -D warnings