Skip to content

Bump codecov/codecov-action from 3.1.0 to 5.1.2 #161

Bump codecov/codecov-action from 3.1.0 to 5.1.2

Bump codecov/codecov-action from 3.1.0 to 5.1.2 #161

Workflow file for this run

name: Build
on:
pull_request:
branches: ['main']
jobs:
build:
strategy:
fail-fast: false
matrix:
go-version: ['1.17', '1.18']
name: Build ${{ matrix.go-version }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
check-latest: true
- run: |
go build ./...
go test -run=^$ ./...