Skip to content

Merge pull request #4 from ac0d3r/main #44

Merge pull request #4 from ac0d3r/main

Merge pull request #4 from ac0d3r/main #44

Workflow file for this run

name: build-test
on: [push]
jobs:
test:
name: build-test
strategy:
fail-fast: false
matrix:
go-version: [1.17.x, 1.18.x, 1.19.x, 1.20.x, 1.21.x]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Build
run: |
go env -w GOFLAGS=-mod=mod
go build -v ./...
- name: Test With Coverage
run: go test -race -coverprofile=coverage -covermode=atomic
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2
with:
files: ./coverage
if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.21.x'
- name: Go vet
run: |
go vet .
if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.21.x'
- name: Staticcheck
uses: dominikh/staticcheck-action@v1.3.0
with:
version: "2022.1"
install-go: false
if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.21.x'