Skip to content

ci: re-enacted linting #32

ci: re-enacted linting

ci: re-enacted linting #32

Workflow file for this run

name: go test
on: [push, pull_request]
jobs:
lint:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: stable
check-latest: true
cache: true
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: latest
only-new-issues: true
test:
name: Unit tests
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
go_version: ['1.19', 'oldstable', 'stable' ]
steps:
- name: Run unit tests
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go_version }}
check-latest: true
- uses: actions/checkout@v3
- run: go test -v -race -coverprofile=coverage-${{ matrix.os }}.${{ matrix.go_version }}.out -covermode=atomic ./...
- name: Upload coverage to codecov
uses: codecov/codecov-action@v3
with:
files: ./coverage-${{ matrix.os }}.${{ matrix.go_version }}.out
flags: ${{ matrix.go_version }}
os: ${{ matrix.os }}
fail_ci_if_error: false
verbose: true