Skip to content

Commit

Permalink
fix: add missing steps to release gh-action
Browse files Browse the repository at this point in the history
  • Loading branch information
omissis committed Sep 11, 2022
1 parent 4644760 commit f2fcccd
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,19 @@ jobs:
fetch-depth: 0
- name: Fetch all tags
run: git fetch --force --tags
- name: Setup Golang
uses: actions/setup-go@v3
with:
go-version: '^1.19.0'
- name: Fix file permissions
run: sudo chmod 0700 internal/arch/file/expect/test/permissions/0700.txt
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.49.0
args: -v --color=always --config=.rules/.golangci.yml ./...
- name: Run tests
run: go test -v ./...
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v3
with:
Expand Down

0 comments on commit f2fcccd

Please # to comment.