Skip to content

Update counterfeiter and fakes #332

Update counterfeiter and fakes

Update counterfeiter and fakes #332

Workflow file for this run

name: go
on:
push:
pull_request:
jobs:
verify: # <- name
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-2019]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- uses: golangci/golangci-lint-action@v6
- name: Unit Tests (Windows)
if: runner.os == 'Windows'
run: ./bin/test-unit.ps1
- name: Unit Tests (Linux)
if: runner.os == 'Linux'
run: ./bin/test-unit