Skip to content

test: fix tests on Windows #616

test: fix tests on Windows

test: fix tests on Windows #616

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
if: matrix.os == 'ubuntu-latest'
run: go test ./...
- name: Run tests (skip tests using Docker)
if: matrix.os == 'windows-latest'
run: go test ./... --godog.tags=~@docker