Skip to content

Commit 9c035f0

Browse files
authored
Merge pull request #94 from pior/ci-sub
Fix CI failing on missing git submodule
2 parents a108b52 + d9e4f53 commit 9c035f0

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/ci.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,13 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
go-version: [ '1.22', '1.23.x' ]
14+
go-version: [ '1.22', '1.23', '1.24.x' ]
1515

1616
steps:
1717
- uses: actions/checkout@v4
18+
- name: Checkout submodules
19+
run: git submodule update --init --recursive
20+
1821
- name: Setup Go ${{ matrix.go-version }}
1922
uses: actions/setup-go@v5
2023
with:

0 commit comments

Comments
 (0)