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.
2 parents acd7617 + 814b7ff commit d3b6dcaCopy full SHA for d3b6dca
.github/workflows/ci.yaml
@@ -37,6 +37,28 @@ jobs:
37
38
- run: make lint
39
- run: make test
40
+
41
+ release-test:
42
+ runs-on: ubuntu-latest
43
+ # only run goreleaser snapshot on non-main branch
44
+ if: github.ref != 'refs/heads/main'
45
+ steps:
46
+ - uses: actions/checkout@v3
47
48
+ - uses: actions/setup-go@v4
49
+ with:
50
+ go-version: "1.20"
51
52
+ - uses: golangci/golangci-lint-action@v3
53
54
+ version: v1.52.2
55
56
+ # installed here to run lint on the .goreleaser.yml file:
57
+ - name: Install GoReleaser
58
+ uses: goreleaser/goreleaser-action@v4
59
60
+ install-only: true
61
62
- run: make snapshot
63
64
release:
0 commit comments