Skip to content

test: fix tests on Windows #621

test: fix tests on Windows

test: fix tests on Windows #621

Workflow file for this run

name: Test
on:
pull_request:
workflow_call:
env:
DOCKER_DEFAULT_PLATFORM: linux/amd64
jobs:
test:
name: Run tests
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.23"
- name: Run tests
run: go test ./...