From 74d82fa356e07ec03b896f132cb31d0bb33d0750 Mon Sep 17 00:00:00 2001 From: Thomas von Dein Date: Wed, 12 Feb 2025 14:04:40 +0100 Subject: [PATCH] fix ci tests on windows: make clean before running test --- .github/workflows/ci.yaml | 4 +--- Makefile | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 1624835..e56e0ca 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -5,9 +5,7 @@ jobs: strategy: matrix: version: ['1.22'] - # windows-latest removed, see: - # https://github.com/rogpeppe/go-internal/issues/284 - os: [ubuntu-latest, macos-latest] + os: [ubuntu-latest, macos-latest, windows-latest] name: Build runs-on: ${{ matrix.os }} steps: diff --git a/Makefile b/Makefile index 2870e99..5ce09dd 100644 --- a/Makefile +++ b/Makefile @@ -64,7 +64,7 @@ install: buildlocal clean: rm -rf $(tool) releases coverage.out -test: +test: clean go test ./... $(OPTS) singletest: