Skip to content

Commit

Permalink
Merge pull request #66 from yutopp/feature/update-ci
Browse files Browse the repository at this point in the history
Update CI deps
  • Loading branch information
yutopp authored Jul 15, 2024
2 parents c7fee44 + e9c8bdd commit 553a888
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 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,10 @@ 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
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true

0 comments on commit 553a888

Please sign in to comment.