Skip to content

Merge pull request #16 from mrf345/testing #54

Merge pull request #16 from mrf345/testing

Merge pull request #16 from mrf345/testing #54

Workflow file for this run

name: Build
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
go: [stable]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '>=1.22'
cache-dependency-path: |
go.sum
internal/utils/go.sum
- name: Install dependencies
run: |
go get .
- name: Lint
if: runner.os == 'linux'
uses: golangci/golangci-lint-action@v6
with:
version: v1.59
- name: Test
run: go test -count=2 ./...