Skip to content

test: fix tests on Windows #610

test: fix tests on Windows

test: fix tests on Windows #610

Workflow file for this run

name: Test
on:
pull_request:
workflow_call:
jobs:
test:
name: Run tests
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Setup docker (missing on MacOS)
if: runner.os == 'macos'
run: |
brew install docker colima
colima start
- uses: actions/setup-go@v5
with:
go-version: "1.23"
- name: Run tests
run: go test ./...