Merge pull request #2177 from zed-industries/check-before-test

Cargo check before test to catch warnings/errors
This commit is contained in:
Julia 2023-02-16 14:43:33 -05:00 committed by GitHub
commit 19b686ad65
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -42,6 +42,9 @@ jobs:
clean: false
submodules: 'recursive'
- name: Run check
run: cargo check --workspace
- name: Run tests
run: cargo test --workspace --no-fail-fast