From 5b6c6501b7593c1ac0c2205bbfda2aa194434af9 Mon Sep 17 00:00:00 2001 From: Andrii Vakarev Date: Sun, 17 Mar 2024 23:58:06 +0100 Subject: [PATCH] ci: remove go matrix from integration-test, use version from go.mod instead --- .github/workflows/integration-test.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml index bcebdd6..611245e 100644 --- a/.github/workflows/integration-test.yml +++ b/.github/workflows/integration-test.yml @@ -10,9 +10,6 @@ on: jobs: test: - strategy: - matrix: - go: ['1.22', '1.21', '1.20', '1.19', '1.18'] runs-on: ubuntu-latest steps: - name: Checkout @@ -32,7 +29,7 @@ jobs: - name: Install Go uses: actions/setup-go@v5 with: - go-version: ${{ matrix.go }} + go-version-file: go.mod - name: Prepare env run: cp integration-test/.example.env integration-test/.env