Skip to content

Commit

Permalink
workflows: update go version
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremmfr committed Aug 7, 2023
1 parent 4259f91 commit b24b312
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
name: Go Tests
on: [push, pull_request]
jobs:
test-1_18:
name: Test 1.18
test-1_19:
name: Test 1.19
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.18
- name: Set up Go 1.19
uses: actions/setup-go@v4
with:
go-version: 1.18
go-version: '1.19'
id: go
- name: Check out code
uses: actions/checkout@v3
- name: Test
run: go test -v ./...

test-1_19:
name: Test 1.19
test-1_20:
name: Test 1.20
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.19
- name: Set up Go 1.20
uses: actions/setup-go@v4
with:
go-version: 1.19
go-version: '1.20'
id: go
- name: Check out code
uses: actions/checkout@v3
Expand Down

0 comments on commit b24b312

Please sign in to comment.