From 8f50162e337b1efd7632c1fb31941b2f2bdd0c84 Mon Sep 17 00:00:00 2001 From: Johannes Kaufmann Date: Fri, 24 May 2024 21:52:03 +0200 Subject: [PATCH] remove windows from testing matrix --- .github/workflows/go.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 69de1e5..883fb1a 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -41,7 +41,8 @@ jobs: strategy: matrix: go: ['1.20', '1.21', '1.22'] - os: [ubuntu-latest, macos-latest, windows-latest] + # TODO: also test on 'windows-latest' + os: [ubuntu-latest, macos-latest] name: Go ${{ matrix.go }} on ${{ matrix.os }} runs-on: ${{ matrix.os }}