Skip to content

Commit

Permalink
Edit jobs on GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
osamingo committed Feb 25, 2023
1 parent 68b5c05 commit 761e52c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,22 +11,22 @@ on:
jobs:
lint:
name: Lint
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: golangci/golangci-lint-action@v3
with:
version: v1.49.0
test:
name: Test
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.18.x', '1.19.x' ]
go: [ 'stable', 'oldstable' ]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v2
- uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
- run: go test -race -covermode=atomic -coverprofile=coverage.txt ./...
- uses: codecov/codecov-action@v2
- uses: codecov/codecov-action@v3

0 comments on commit 761e52c

Please sign in to comment.