Skip to content

Commit

Permalink
ci: ⬆️ Updated supported Golang versions
Browse files Browse the repository at this point in the history
Signed-off-by: Alessandro Sanino <[email protected]>
  • Loading branch information
saniales committed Sep 14, 2023
1 parent d69ba1a commit ea6505b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,17 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
go_version: [1.17, 1.18, 1.19]
go_version: ["1.19", "1.20", "1.21"]
os: [ubuntu-20.04, macOS-latest]
steps:
- name: Set up Go ${{ matrix.go_version }}
uses: actions/setup-go@v3
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go_version }}
id: go

- name: Check out code into the Go module directory
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Run Unit Tests
run: ./scripts/runUnitTests.sh

0 comments on commit ea6505b

Please sign in to comment.