Skip to content

Merge pull request #37 from GGP1/validate_flags #125

Merge pull request #37 from GGP1/validate_flags

Merge pull request #37 from GGP1/validate_flags #125

Workflow file for this run

name: Test
on:
push:
branches:
- "master"
tags:
- "*"
pull_request:
jobs:
build:
runs-on: ${{matrix.os}}
strategy:
fail-fast: false
matrix:
os:
- "ubuntu-latest"
- "macOS-latest"
- "windows-latest"
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.22
- name: Run tests
run: go test ./... -race