Cargo check before test to catch warnings/errors

Julia and Nathan Sobo created

Co-Authored-By: Nathan Sobo <nathan@zed.dev>

Change summary

.github/workflows/ci.yml | 3 +++
1 file changed, 3 insertions(+)

Detailed changes

.github/workflows/ci.yml 🔗

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