From 2902faf65172d1c201cc33af4a2870e13e7af5d2 Mon Sep 17 00:00:00 2001 From: x5a17ed <0x5a17ed@tuta.io> Date: Wed, 22 May 2024 00:01:45 +0200 Subject: [PATCH] ci: cut down on runners this is a package and OS agnostic. No need to run tests on multiple operating systems. --- .github/workflows/test.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 759d121..c41cda8 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -6,8 +6,7 @@ jobs: strategy: matrix: go-version: ["1.20.x", "1.21.x", "1.22.x"] - os: ["ubuntu-latest", "macos-latest", "windows-latest"] - runs-on: "${{ matrix.os }}" + runs-on: "ubuntu-latest" steps: - uses: actions/checkout@v4 with: