From b3ca53c51732f1d0f69486ed23569cfb76907af2 Mon Sep 17 00:00:00 2001 From: Guillaume Belanger Date: Wed, 3 Jan 2024 12:58:48 -0500 Subject: [PATCH] chore: Uses go version from go.mod (#51) * chore: Uses go version from go.mod --------- Co-authored-by: gab-arrobo --- .github/workflows/master.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index b87b274..680a6e4 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -19,7 +19,7 @@ jobs: - uses: actions/setup-go@v5 with: - go-version: 1.21 + go-version-file: 'go.mod' - name: Build run: go build @@ -31,7 +31,7 @@ jobs: - uses: actions/setup-go@v5 with: - go-version: 1.21 + go-version-file: 'go.mod' - name: Unit tests run: go test ./...