We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a1feb2 commit 60e615cCopy full SHA for 60e615c
.github/workflows/test.yml
@@ -68,8 +68,11 @@ jobs:
68
69
windows:
70
name: "Windows tests"
71
- runs-on: windows-2022
+ runs-on: windows-2022-8-cores
72
timeout-minutes: 30
73
+ defaults:
74
+ run:
75
+ shell: bash
76
steps:
77
- uses: actions/checkout@v4
78
with:
@@ -81,6 +84,14 @@ jobs:
81
84
run: go test -v ./...
82
85
- name: Make
83
86
run: make
87
+ - name: Install
88
+ run: make install
89
+ # FIXME: installing to /usr/local/ doesn't seem correct for Windows
90
+ - name: Test
91
+ run: |
92
+ set -eux -o pipefail
93
+ export PATH=/usr/local/bin:$PATH
94
+ ./hack/test-templates.sh ./templates/experimental/wsl2.yaml
95
96
integration:
97
name: Integration tests
0 commit comments