Skip to content

New test action

New test action #2

Workflow file for this run

name: Test
on: [push]
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "go.mod"
- name: Build for tests
run: make build
- name: Run tests
run: make test