File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change 12
12
strategy :
13
13
fail-fast : false
14
14
matrix :
15
- os : [ubuntu-latest, macos-latest]
15
+ os : [ubuntu-latest, macos-latest, windows-latest ]
16
16
rust : [nightly, beta, stable, 1.85.0]
17
17
steps :
18
18
- uses : actions/checkout@v4
24
24
profile : minimal
25
25
override : true
26
26
27
+ - name : Step VCPKG
28
+ run : echo "VCPKG_ROOT=$env:VCPKG_INSTALLATION_ROOT" | Out-File -FilePath $env:GITHUB_ENV -Append
29
+ if : startsWith(matrix.os, 'windows')
30
+
31
+ - name : Install OpenSSL
32
+ run : vcpkg install openssl:x64-windows-static-md
33
+ if : startsWith(matrix.os, 'windows')
34
+
27
35
- name : Run cargo check
28
36
uses : actions-rs/cargo@v1
29
37
with :
38
46
args : -Z features=dev_dep
39
47
40
48
- name : Run cargo test
49
+ if : matrix.os != 'windows-latest'
41
50
uses : actions-rs/cargo@v1
42
51
with :
43
52
command : test
You can’t perform that action at this time.
0 commit comments