Skip to content

Commit

Permalink
Merge pull request #313 from YOU54F/chore/go_versions
Browse files Browse the repository at this point in the history
chore(ci): test/release on go 1.20
  • Loading branch information
mefellows committed Jul 18, 2023
2 parents c51f035 + 96a1bc3 commit b54ab72
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Expand Up @@ -18,7 +18,7 @@ jobs:
name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.19
go-version: 1.20
-
name: Run GoReleaser
uses: goreleaser/goreleaser-action@v4
Expand Down
11 changes: 8 additions & 3 deletions .github/workflows/test.yml
Expand Up @@ -16,16 +16,21 @@ jobs:
test:
strategy:
matrix:
go-version: [1.17.x, 1.18.x, 1.19.x]
go-version: [ # https://endoflife.date/go
1.17.x, # Ended 02 Aug 2022
1.18.x, # Ended 01 Feb 2023
1.19.x,
1.20.x
]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v3
- name: Test
run: APP_BRANCH=${APP_REF:11} DOCKER_GATEWAY_HOST=172.17.0.1 DOCKER_HOST_HTTP="http://172.17.0.1" make
- name: Install goveralls
Expand Down

0 comments on commit b54ab72

Please sign in to comment.