Skip to content

Commit f96285b

Browse files
committed
Add Windows to CI
1 parent 39d79c2 commit f96285b

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/ci.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,24 @@ jobs:
3333
aws_secret_access_key: "${{ secrets.AWS_SECRET_ACCESS_KEY }}"
3434
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/deploy'
3535

36+
test_on_windows:
37+
name: Test on Windows
38+
runs-on: windows-latest
39+
steps:
40+
- name: Checkout the source code
41+
uses: actions/checkout@v2
42+
with:
43+
fetch-depth: 1
44+
45+
- name: Install latest beta
46+
uses: actions-rs/toolchain@v1
47+
with:
48+
toolchain: beta
49+
override: true
50+
51+
- name: cargo check
52+
run: cargo check
53+
3654
test_benchmarks:
3755
strategy:
3856
matrix:

0 commit comments

Comments
 (0)