From 8f48ded2a129bee749bc22cc3cb8afbc22f53604 Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Thu, 19 Dec 2019 16:49:12 -0600 Subject: [PATCH] Move benchmark bitrot linter out of nightly lints --- .github/workflows/ci.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 285d455..c78ad4a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,6 +30,13 @@ jobs: command: fmt args: --all -- --check --color always + # Build benchmarks to prevent bitrot + - name: Build benchmarks + uses: actions-rs/cargo@v1 + with: + command: build + args: --all --benches + test: name: Test on ${{ matrix.os }} runs-on: ${{ matrix.os }} @@ -110,10 +117,3 @@ jobs: with: command: doc args: --all --document-private-items - - # Build benchmarks to prevent bitrot - - name: Build benchmarks - uses: actions-rs/cargo@v1 - with: - command: build - args: --verbose --all --benches