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 9ac4ee1 commit 4889a85Copy full SHA for 4889a85
.github/workflows/rust.yml
@@ -62,7 +62,28 @@ jobs:
62
cargo test --no-default-features --features quickjs-ng
63
64
build-test-msvc:
65
- #if: ${{ false }}
+ runs-on: windows-latest
66
+ steps:
67
+ - uses: actions/checkout@v1
68
+
69
+ - name: Install stable toolchain (windows)
70
+ uses: actions-rs/toolchain@v1
71
+ with:
72
+ profile: minimal
73
+ toolchain: stable
74
+ target: x86_64-pc-windows-msvc
75
+ override: true
76
+ - name: Setup (windows)
77
+ run: |
78
+ echo "CARGO_BUILD_TARGET=x86_64-pc-windows-msvc" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
79
+ - name: Build (windows)
80
81
+ cargo build
82
+ - name: Test (windows)
83
84
+ cargo test
85
86
+ build-test-msvc-ng:
87
runs-on: windows-latest
88
steps:
89
- uses: actions/checkout@v1
0 commit comments