Skip to content

ci(workflow): add Go CI matrix for tests #1

ci(workflow): add Go CI matrix for tests

ci(workflow): add Go CI matrix for tests #1

Workflow file for this run

name: Go
on: [ push, pull_request ]
jobs:
test:
strategy:
matrix:
version: ['1.23', '1.24', '1.25', 'stable']
os: [ macos-latest, ubuntu-latest, windows-latest ]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v6.2.0
with:
go-version: ${{ matrix.version }}
- name: Checkout Git from Repository
uses: actions/checkout@v6.0.2
- name: Run unit tests
run: go test -v ./...