Skip to content

Commit df37957

Browse files
committed
fix: wrong env in ci
1 parent f01378f commit df37957

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ env:
2323
jobs:
2424
run-tests:
2525
name: OS
26-
runs-on: ${{ matrix.os }}-latest
26+
runs-on: envs/${{ matrix.os }}-64.lock.yaml
2727
strategy:
2828
fail-fast: false
2929
matrix:
3030
# Run windows only on scheduled runs on Sundays, otherwise ignore
31-
os: ${{ github.event.schedule == '0 5 * * 0' && fromJson('["ubuntu", "macos", "windows"]') || fromJson('["ubuntu", "macos"]') }}
31+
os: ${{ github.event.schedule == '0 5 * * 0' && fromJson('["linux", "osx", "win"]') || fromJson('["linux", "osx"]') }}
3232

3333
defaults:
3434
run:

0 commit comments

Comments
 (0)