Skip to content

Commit 7b7b62b

Browse files
committed
ci: fix not passing PACKAGES on windows runners
This might fix issue 156. Signed-off-by: Kir Kolyshkin <[email protected]>
1 parent 005229a commit 7b7b62b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ jobs:
77
go-version: [1.18.x, 1.22.x, 1.23.x]
88
platform: [ubuntu-20.04, ubuntu-22.04, ubuntu-24.04, windows-latest, macos-12, macos-14]
99
runs-on: ${{ matrix.platform }}
10+
defaults:
11+
run:
12+
shell: bash
1013
steps:
1114
- name: Install Go
1215
uses: actions/setup-go@v5
@@ -18,7 +21,7 @@ jobs:
1821
run: |
1922
# This corresponds with the list in Makefile:1, but omits the "userns"
2023
# and "capability" modules, which require go1.21 as minimum.
21-
echo 'PACKAGES="mountinfo mount sequential signal symlink user"' >> $GITHUB_ENV
24+
echo 'PACKAGES=mountinfo mount sequential signal symlink user' >> $GITHUB_ENV
2225
- name: go mod tidy
2326
run: |
2427
make foreach CMD="go mod tidy"

0 commit comments

Comments
 (0)