We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b464344 commit 1b4db2bCopy full SHA for 1b4db2b
.github/workflows/build_and_test.yml
@@ -161,14 +161,9 @@ jobs:
161
os:
162
- ubuntu
163
- macos
164
+ - windows
165
perl:
166
- latest
- distribution:
167
- - default
168
- include:
169
- - os: windows
170
- perl: latest
171
- distribution: strawberry
172
173
runs-on: ${{ matrix.os }}-latest
174
@@ -184,7 +179,7 @@ jobs:
184
179
uses: shogo82148/actions-setup-perl@v1
185
180
with:
186
181
perl-version: ${{ matrix.perl }}
187
- distribution: ${{ matrix.distribution }}
182
+ distribution: ${{ matrix.os == 'windows' && 'strawberry' || 'default' }}
188
183
- name: Install dependencies
189
uses: knicknic/[email protected]
190
0 commit comments