Skip to content

Commit

Permalink
Update release action
Browse files Browse the repository at this point in the history
  • Loading branch information
yasuoza committed Nov 11, 2021
1 parent c9e6868 commit 4c79439
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go: [1.16, 1.15]
go: [1.17]
name: Test with Go version ${{ matrix.go }}
steps:
- uses: actions/setup-go@v2.1.4
Expand All @@ -20,13 +20,13 @@ jobs:
uses: actions/checkout@v2.4.0

- name: Get dependencies
run: go mod download
run: make install

- name: go vet
run: go vet ./...
- name: lint
run: make lint

- name: go test
run: go test -v -covermode=count -coverprofile=coverage.out
- name: test
run: make test

release:
needs: test
Expand All @@ -39,7 +39,7 @@ jobs:

- uses: actions/setup-go@v2.1.4
with:
go-version: 1.16
go-version: 1.17

- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2.8.0
Expand Down

0 comments on commit 4c79439

Please sign in to comment.