Run full cargo check only on nightly

This commit is contained in:
Stjepan Glavina 2020-06-21 22:30:42 +02:00
parent 40065c191f
commit 4aca9741b9
1 changed files with 7 additions and 0 deletions

View File

@ -33,6 +33,13 @@ jobs:
override: true
- name: Run cargo check
uses: actions-rs/cargo@v1
with:
command: check
args: --all --bins
- name: Run full cargo check
if: startsWith(matrix.rust, 'nightly')
uses: actions-rs/cargo@v1
with:
command: check