Skip to content

Commit ed99ebd

Browse files
committed
[CI] fix
1 parent 4a39f1f commit ed99ebd

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/rust.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,14 @@ jobs:
4646
run: |
4747
rustup target add x86_64-unknown-linux-musl
4848
cargo check -p minion -p minion-ffi -p minion-cli --target x86_64-unknown-linux-musl
49+
- name: Check windows (gnu)
50+
run: |
4951
rustup target add x86_64-pc-windows-gnu
50-
cargo check -p minion -p minion-ffi -p minion-cli --target x86_64-unknown-windows-gnu
52+
cargo check -p minion -p minion-ffi -p minion-cli --target x86_64-pc-windows-gnu
53+
- name: Check windows (msvc)
54+
run: |
55+
rustup target add x86_64-pc-windows-msvc
56+
cargo check -p minion -p minion-ffi -p minion-cli --target x86_64-pc-windows-msvc
5157
tests:
5258
strategy:
5359
matrix:
@@ -67,7 +73,7 @@ jobs:
6773
override: true
6874
- name: Compile tests
6975
run: |
70-
rm -rf .cargo
76+
rm -r -f .cargo
7177
cd minion-tests
7278
7379
rustup target add ${{ matrix.target }}

0 commit comments

Comments
 (0)