Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.24.13'

go-version-file: 'go.mod'
check-latest: true

- name: Run Tests
run: chmod 0400 testdata/test.key &&
go test ./...
3 changes: 2 additions & 1 deletion .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.24.13'
go-version-file: 'go.mod'
check-latest: true

- name: Setup Test Key
run: chmod 0400 testdata/test.key
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.24.13'
go-version-file: 'go.mod'
check-latest: true

- name: Ensure build directory exists
run: mkdir -p build
Expand Down
Loading