We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84f14f0 commit f33bfe1Copy full SHA for f33bfe1
.github/workflows/ci.yml
@@ -1,13 +1,17 @@
1
name: CI
2
+
3
on:
4
push:
5
+ branches:
6
+ - master
7
+ pull_request:
8
9
jobs:
10
build:
11
runs-on: ubuntu-latest
12
strategy:
13
matrix:
- go: [ '1.23', '1.22' ]
14
+ go: [ stable, oldstable ]
15
name: Go ${{ matrix.go }} test
16
steps:
17
- uses: actions/checkout@v4
@@ -19,7 +23,7 @@ jobs:
19
23
- run: make lint
20
24
- run: make test_coverage
21
25
- name: Upload code coverage to codecov
22
- if: matrix.go == '1.23'
26
+ if: matrix.go == 'stable'
27
uses: codecov/codecov-action@v3
28
with:
29
file: ./coverage.out
.github/workflows/release.yml
@@ -16,7 +16,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
18
- go-version: 1.x
+ go-version: stable
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v6
0 commit comments