Skip to content

chore(deps): bump golangci/golangci-lint-action from 4 to 5 (#242) #52

chore(deps): bump golangci/golangci-lint-action from 4 to 5 (#242)

chore(deps): bump golangci/golangci-lint-action from 4 to 5 (#242) #52

Workflow file for this run

---
name: Test
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
on: # yamllint disable-line rule:truthy
pull_request:
branches:
- main
push:
branches:
- main
permissions: read-all
jobs:
go:
name: Go
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.21'
- name: Run go test
run: make go.test
- name: Upload coverage report
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.txt
verbose: true
fail_ci_if_error: true