Skip to content

Commit

Permalink
Bump the go version to 1.20
Browse files Browse the repository at this point in the history
  • Loading branch information
ioppermann committed Jan 15, 2024
1 parent 3b8c3af commit 739ea9c
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 18 deletions.
34 changes: 17 additions & 17 deletions .github/workflows/go-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,20 @@ name: tests
on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 2
- uses: actions/setup-go@v2
with:
go-version: '1.18'
- name: Run coverage
run: go test -coverprofile=coverage.out -covermode=atomic -race -v ./...
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: coverage.out
flags: unit-linux
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 2
- uses: actions/setup-go@v2
with:
go-version: "1.20"
- name: Run coverage
run: go test -coverprofile=coverage.out -covermode=atomic -race -v ./...
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: coverage.out
flags: unit-linux
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/datarhei/gosrt

go 1.18
go 1.20

require (
github.com/benburkert/openpgp v0.0.0-20160410205803-c2471f86866c
Expand Down

0 comments on commit 739ea9c

Please sign in to comment.