Update dependencies #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: check | |
on: | |
push: | |
branches: | |
- 'main' | |
pull_request: | |
branches: | |
- 'main' | |
permissions: | |
contents: read | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout repository | |
uses: actions/checkout@v4 | |
- name: setup go build environment | |
uses: actions/setup-go@v4 | |
with: | |
go-version-file: 'go.mod' | |
check-latest: true | |
- name: linter | |
run: make mod deps linter GOPATH=$(go env GOPATH) | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout repository | |
uses: actions/checkout@v4 | |
- name: setup go build environment | |
uses: actions/setup-go@v4 | |
with: | |
go-version-file: 'go.mod' | |
check-latest: true | |
- name: dependency cache | |
uses: actions/cache@v4 | |
with: | |
path: $(go env GOPATH)/pkg/mod | |
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
restore-keys: ${{ runner.os }}-go- | |
- name: unit tests | |
run: make mod deps test GOPATH=$(go env GOPATH) | |
- name: coverage report | |
uses: shogo82148/actions-goveralls@v1 | |
with: | |
path-to-profile: target/report/coverage.out | |
- name: hash go files | |
id: go_hash | |
run: echo "value=${{ hashFiles('**/*.go','!vendor/**') }}" >>"$GITHUB_OUTPUT" | |
- name: cache coverage | |
id: cover_cache | |
uses: actions/cache@v4 | |
with: | |
path: target/report/coverage.out | |
key: go_cover_profile_${{ steps.go_hash.outputs.value }} |