add ci step that does not include check tests

This commit is contained in:
Rob Ede 2021-02-24 12:19:57 +00:00
parent 4e36684929
commit 37949f63cd
No known key found for this signature in database
GPG Key ID: 97C636207D3EF933
1 changed files with 7 additions and 1 deletions

View File

@ -65,7 +65,13 @@ jobs:
uses: actions-rs/cargo@v1 uses: actions-rs/cargo@v1
with: with:
command: hack command: hack
args: --clean-per-run check --workspace --no-default-features --tests args: --clean-per-run check --workspace --no-default-features
- name: check minimal + tests
uses: actions-rs/cargo@v1
with:
command: hack
args: --clean-per-run check --workspace --no-default-features --tests --examples
- name: check full - name: check full
uses: actions-rs/cargo@v1 uses: actions-rs/cargo@v1