Skip to content

Bump golangci/golangci-lint-action from 4.0.0 to 5.0.0 #16

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

Bump golangci/golangci-lint-action from 4.0.0 to 5.0.0 #16

Workflow file for this run

name: Test
on:
push:
branches: [master]
pull_request:
permissions:
contents: read
jobs:
test:
strategy:
matrix:
go: ['1.21']
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Setup
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Prepare checkout
run: git config --global core.autocrlf false
- name: Checkout
uses: actions/checkout@v4
- name: Test
run: go test -v -coverprofile coverage.txt -covermode atomic ./...
- name: Coverage
uses: codecov/codecov-action@v4