Skip to content

Commit

Permalink
Merge branch 'master' into example/avro
Browse files Browse the repository at this point in the history
  • Loading branch information
mefellows committed Jul 18, 2023
2 parents 1f66368 + b54ab72 commit cc8e0d9
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,17 @@ 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:
Expand All @@ -28,8 +35,6 @@ jobs:
with:
distribution: 'zulu'
java-version: '17'
- 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 cc8e0d9

Please sign in to comment.