We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39d79c2 commit f96285bCopy full SHA for f96285b
.github/workflows/ci.yml
@@ -33,6 +33,24 @@ jobs:
33
aws_secret_access_key: "${{ secrets.AWS_SECRET_ACCESS_KEY }}"
34
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/deploy'
35
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
48
+ toolchain: beta
49
+ override: true
50
51
+ - name: cargo check
52
+ run: cargo check
53
54
test_benchmarks:
55
strategy:
56
matrix:
0 commit comments