Skip to content

Bump golangci/golangci-lint-action from 3.7.0 to 5.0.0 #427

Bump golangci/golangci-lint-action from 3.7.0 to 5.0.0

Bump golangci/golangci-lint-action from 3.7.0 to 5.0.0 #427

Workflow file for this run

name: test
on:
push:
branches:
- "master"
pull_request:
types: [opened, synchronize]
branches:
- "*"
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: checkout code
uses: actions/checkout@v4
- name: install go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
check-latest: true
- name: test
run: make test
- name: upload coverage to codecov
uses: codecov/codecov-action@4fe8c5f003fae66aa5ebb77cfd3e7bfbbda0b6b0 # [email protected]
with:
files: coverage.out
fail_ci_if_error: false
verbose: true