Move benchmark bitrot linter out of nightly lints

This commit is contained in:
Jack Grigg 2019-12-19 16:49:12 -06:00
parent 6c2c2b58de
commit 8f48ded2a1
No known key found for this signature in database
GPG Key ID: 9E8255172BBF9898
1 changed files with 7 additions and 7 deletions

View File

@ -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