There was an error while loading. Please reload this page.
2 parents 020b1cb + c27be8e commit 67fb17eCopy full SHA for 67fb17e
1 file changed
.github/workflows/tests.yaml
@@ -2,16 +2,19 @@ name: Go Tests
2
3
on: [push]
4
5
+permissions:
6
+ contents: read
7
+
8
jobs:
9
unitTests:
10
11
runs-on: ubuntu-latest
12
13
steps:
- - uses: actions/checkout@v4
- - name: Set up Go 1.23.x
- uses: actions/setup-go@v5
14
+ - uses: actions/checkout@v6
15
+ - name: Set up Go 1.25.x
16
+ uses: actions/setup-go@v6
17
with:
- go-version: '1.23.x'
18
+ go-version: '1.25'
19
- name: Run tests
20
run: go test -v ./...
0 commit comments