We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11e489d commit d90311bCopy full SHA for d90311b
1 file changed
.github/workflows/test.yml
@@ -76,9 +76,19 @@ jobs:
76
if: always()
77
run: sudo chown -R $(id -u):$(id -g) out/build
78
79
+ windows-prepare:
80
+ name: Prepare Windows
81
+ runs-on: windows-latest
82
+ steps:
83
+ - uses: actions/checkout@v4
84
+ - name: Setup Windows Env (Warmup Cache)
85
+ uses: ./.github/actions/setup-windows
86
+ with:
87
+ compiler: msvc
88
89
windows-test:
90
name: Windows Test (${{ matrix.compiler }})
91
+ needs: windows-prepare
92
runs-on: windows-latest
93
strategy:
94
fail-fast: false
0 commit comments