From e71c9c20988a2ecca05f220b258d8aaec30ef08d Mon Sep 17 00:00:00 2001 From: Guillaume Belanger Date: Tue, 5 Dec 2023 13:44:45 -0500 Subject: [PATCH] chore: Sets up go in CI --- .github/workflows/master.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index f9bbd67..7d13f6e 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -17,6 +17,10 @@ jobs: steps: - uses: actions/checkout@v4 + - uses: actions/setup-go@v4 + with: + go-version: 1.21 + - name: Build run: go build @@ -25,5 +29,9 @@ jobs: steps: - uses: actions/checkout@v4 + - uses: actions/setup-go@v4 + with: + go-version: 1.21 + - name: Unit tests run: go test ./...