Skip to content

Commit 5b3352e

Browse files
committed
Enable checking all code and tests on Windows
Previously the Windows CI only compiled/installed spfs which would allow problems to slip in like tests that don't compile on Windows. Signed-off-by: J Robert Ray <[email protected]>
1 parent 5e736a1 commit 5b3352e

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/rust.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,13 @@ jobs:
4141
# --force because cache-hit can be false (matched a partial key?) and
4242
# then this command will fail if the previous step did restore the file.
4343
run: cargo install --locked --force ast-grep
44-
- name: Install Debug SPFS
44+
- name Cargo Check
4545
run: |
46-
make install-debug-spfs
46+
cargo check --tests --features server,spfs/server
47+
# Use this someday to do real tests
48+
#- name: Install Debug SPFS
49+
# run: |
50+
# make install-debug-spfs
4751

4852
build-and-test:
4953
name: Linux Build and Test

0 commit comments

Comments
 (0)