From 2438a6cf497bc2751a66222d22a0c1d39c39a7cc Mon Sep 17 00:00:00 2001 From: MehrazRumman Date: Sat, 11 Jan 2025 22:49:46 +0600 Subject: [PATCH] go yml updated --- .github/workflows/go.yml | 6 +++++- go.mod | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 8217c27..e6d8d44 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -13,6 +13,10 @@ jobs: runs-on: ubuntu-latest + strategy: + matrix: + go-version: [1.13, 1.14, 1.15, 1.16, 1.17, 1.18, 1.19, 1.20, 1.21, 1.22, 1.23] + steps: - name: Checkout code uses: actions/checkout@v2 @@ -20,7 +24,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v2 with: - go-version: '1.23' + go-version: ${{ matrix.go-version }} - name: Install dependencies run: go mod tidy diff --git a/go.mod b/go.mod index f2a6e8b..d664792 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ module github.com/MehrazRumman/gortb -go 1.23.4 +go 1.13