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 1c86231 commit 40ce6f0Copy full SHA for 40ce6f0
2 files changed
.github/workflows/release.yml
@@ -3,7 +3,7 @@ name: goreleaser
3
on:
4
push:
5
tags:
6
- - 'v*'
+ - "v*"
7
8
permissions:
9
contents: write
@@ -20,7 +20,7 @@ jobs:
20
- name: Set up Go
21
uses: actions/setup-go@v5
22
with:
23
- go-version: "1.24"
+ go-version-file: "go.mod"
24
- name: Run GoReleaser
25
uses: goreleaser/goreleaser-action@v6
26
.github/workflows/test.yml
@@ -2,13 +2,11 @@ on: push
2
name: Test
jobs:
test:
+ name: Go unit tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- with:
- fetch-depth: 1
10
- uses: actions/setup-go@v5
11
12
13
- - run: go mod download
14
- run: go test ./...
0 commit comments