We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a1feb2 commit 5b454beCopy full SHA for 5b454be
.github/workflows/test.yml
@@ -68,9 +68,14 @@ 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
+ - run: |
78
+ wsl --list --verbose
79
- uses: actions/checkout@v4
80
with:
81
fetch-depth: 1
@@ -81,6 +86,14 @@ jobs:
86
run: go test -v ./...
82
87
- name: Make
83
88
run: make
89
+ - name: Install
90
+ run: make install
91
+ # FIXME: installing to /usr/local/ doesn't seem correct for Windows
92
+ - name: Test
93
+ run: |
94
+ set -eux -o pipefail
95
+ export PATH=/usr/local/bin:$PATH
96
+ ./hack/test-templates.sh ./templates/experimental/wsl2.yaml
84
97
85
98
integration:
99
name: Integration tests
0 commit comments