Skip to content

Commit a343aff

Browse files
committed
Add test-windows CI
1 parent 6903df1 commit a343aff

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/ci.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,3 +77,17 @@ jobs:
7777
toolchain: stable
7878
- name: Run Rust tests
7979
run: PATH_TO_GIT="$PWD"/git cargo test
80+
81+
test-windows:
82+
runs-on: windows-latest
83+
steps:
84+
- uses: actions/checkout@v2
85+
- name: Set up Rust
86+
uses: actions-rs/toolchain@v1
87+
with:
88+
profile: minimal
89+
toolchain: stable
90+
- name: Run Rust tests
91+
run: |
92+
$env:PATH_TO_GIT='C:\Program Files\Git\cmd\git.exe'
93+
cargo test

0 commit comments

Comments
 (0)