Skip to content

Commit

Permalink
Merge pull request #56 from TankerHQ/mich/upgrade-go-1-21
Browse files Browse the repository at this point in the history
chore: upgrade Go version to 1.21 and go mod tidy
  • Loading branch information
mlevieux authored Feb 5, 2024
2 parents 3e1b479 + 1c7aa38 commit 27b9afa
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ '1.20' ]
go-version: [ '1.21' ]
steps:
- uses: actions/checkout@v1
- name: Set up Go ${{ matrix.go-version }}
Expand All @@ -18,12 +18,15 @@ jobs:

coverage:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ '1.21' ]
steps:
- uses: actions/checkout@v1
- name: Set up Go 1.20
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v1
with:
go-version: '1.20'
go-version: ${{ matrix.go-version }}
- name: Run tests
run: go test -coverprofile=coverage.txt -covermode=atomic ./...
- name: Upload coverage to Codecov
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/TankerHQ/identity-go/v3

go 1.20
go 1.21

require (
github.com/iancoleman/orderedmap v0.3.0
Expand Down

0 comments on commit 27b9afa

Please sign in to comment.