From fbb27df846af264ad81263bc905ccd09fa0bd2f8 Mon Sep 17 00:00:00 2001 From: Meredith Lancaster Date: Tue, 12 Mar 2024 12:25:02 -0600 Subject: [PATCH] use platform matrix for integration tests Signed-off-by: Meredith Lancaster --- .github/workflows/go.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index fc2bcd2dd..76ed65727 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -39,9 +39,13 @@ jobs: run: go build -v ./cmd/gh integration-tests: - runs-on: ubuntu-latest env: GH_TOKEN: ${{ github.token }} + strategy: + fail-fast: false + matrix: + os: [ubuntu-latest, windows-latest, macos-latest] + runs-on: ${{ matrix.os }} steps: - name: Set up Go 1.21