build(deps): Bump docker/build-push-action from 831ca179d3cf91cf0c90ca465a408fa61e2129a2 to ef6cba335306ace1da064b44f9f739dec9be9fa0 #529
Workflow file for this run
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: "Go CI" | |
on: | |
push: | |
branches: | |
- 'main' | |
pull_request: | |
branches: | |
- '*' | |
permissions: | |
contents: read | |
jobs: | |
go-ci: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 'stable' | |
- name: Run build | |
working-directory: ./potal | |
run: go build . | |
- name: Run vet | |
working-directory: ./potal | |
run: go vet . | |
- name: Run lint | |
uses: golangci/golangci-lint-action@v4 | |
with: | |
working-directory: ./potal | |
- name: Run tests | |
working-directory: ./potal | |
run: go test -v -count=1 -race ./... -coverprofile=coverage.out -covermode=atomic | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v4 | |
with: | |
working-directory: ./potal | |
token: ${{ secrets.CODECOV_TOKEN }} |