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 73047b9 commit b55f356Copy full SHA for b55f356
.github/workflows/release.yaml
@@ -6,7 +6,19 @@ on:
6
- "v[0-9]+.[0-9]+.[0-9]+*"
7
8
jobs:
9
+ run-tests:
10
+ name: Run tests
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v3
14
+ - name: Set up Go
15
+ uses: actions/setup-go@v3
16
+ with:
17
+ go-version: 1.21
18
+ - name: Run tests
19
+ run: go test ./...
20
update-changelog:
21
+ needs: run-tests
22
name: Create release
23
runs-on: ubuntu-latest
24
steps:
@@ -29,6 +41,7 @@ jobs:
29
41
file_pattern: CHANGELOG.md
30
42
31
43
releases-matrix:
44
32
45
name: Release Go Binary
33
46
34
47
strategy:
0 commit comments