Skip to content

Use a different separator in Windows tests #8

Use a different separator in Windows tests

Use a different separator in Windows tests #8

Workflow file for this run

name: Test
on: [push]
jobs:
test:
strategy:
fail-fast: false
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-file: "go.mod"
- name: Build for tests
run: make build
- name: Run tests
run: make test