We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4feebcf commit de325c9Copy full SHA for de325c9
1 file changed
.github/workflows/build.yml
@@ -10,14 +10,19 @@ jobs:
10
build:
11
strategy:
12
matrix:
13
- go-version: ["^1", "stable", "oldstable"]
+ go-version: ["^1", "stable", "oldstable", "gomod"]
14
os: [ubuntu-latest, macos-latest] #windows-latest
15
runs-on: ${{ matrix.os }}
16
steps:
17
- uses: actions/checkout@v6
18
- uses: actions/setup-go@v6
19
+ if: matrix.go-version != 'gomod'
20
with:
21
go-version: ${{ matrix.go-version }}
22
+ - uses: actions/setup-go@v6
23
+ if: matrix.go-version == 'gomod'
24
+ with:
25
+ go-version-file: go.mod
26
- run: |
27
diff --version
28
patch --version
0 commit comments