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 1212 strategy :
1313 fail-fast : false
1414 matrix :
15- os : [ubuntu-latest, macos-latest]
15+ os : [ubuntu-latest, macos-latest, windows-latest ]
1616 rust : [nightly, beta, stable, 1.85.0]
1717 steps :
1818 - uses : actions/checkout@v4
2424 profile : minimal
2525 override : true
2626
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+
2735 - name : Run cargo check
2836 uses : actions-rs/cargo@v1
2937 with :
3846 args : -Z features=dev_dep
3947
4048 - name : Run cargo test
49+ if : matrix.os != 'windows-latest'
4150 uses : actions-rs/cargo@v1
4251 with :
4352 command : test
You can’t perform that action at this time.
0 commit comments