Skip to content

Commit

Permalink
Update CI deps
Browse files Browse the repository at this point in the history
  • Loading branch information
yutopp committed Jul 15, 2024
1 parent c7fee44 commit e612ff2
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@ on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.19', '1.18' ]
go: [ '1.22.0', '1.21.0', '1.20', '1.19' ]
name: ${{ matrix.go }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Setup go
uses: actions/setup-go@v3
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}

Expand All @@ -26,10 +26,9 @@ jobs:

- run: make vet

- uses: codecov/codecov-action@v1
- uses: codecov/codecov-action@v4
with:
files: ./coverage.txt
flags: unittests
name: codecov-umbrella-${{ matrix.go }}
fail_ci_if_error: true
verbose: true

0 comments on commit e612ff2

Please sign in to comment.