Skip to content

chore: factorization and simplification #92

chore: factorization and simplification

chore: factorization and simplification #92

Workflow file for this run

name: test
on:
push:
branches:
- main
- master
pull_request:
branches:
- main
- master
jobs:
test:
strategy:
fail-fast: false
matrix:
go-version: [stable, oldstable]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
name: Run tests
steps:
- uses: actions/checkout@v5
- uses: actions/setup-go@v6
with:
go-version: ${{ matrix.go-version }}
- name: Check and get dependencies
run: go mod tidy
- run: make test