Skip to content

chore: update linter, dependencies, and CI #71

chore: update linter, dependencies, and CI

chore: update linter, dependencies, and CI #71

Workflow file for this run

name: Go Matrix
on:
push:
branches:
- main
- master
pull_request:
branches:
- main
- master
jobs:
cross:
name: Go
runs-on: ${{ matrix.os }}
env:
CGO_ENABLED: 0
strategy:
matrix:
go-version: [ stable, oldstable ]
os: [ubuntu-latest, macos-latest]
# TODO ignore windows but need to be added in the future
# os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Test
run: go test -v -cover ./...