Skip to content

Bump the actions group across 1 directory with 5 updates #77

Bump the actions group across 1 directory with 5 updates

Bump the actions group across 1 directory with 5 updates #77

Workflow file for this run

name: Test and Coverage
on:
pull_request:
types:
- opened
- synchronize
paths-ignore:
- README.md
- .gitignore
push:
branches:
- main
merge_group:
jobs:
coverage:
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- '1.21'
- '1.22'
env:
GOPATH: /home/runner/go
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
submodules: recursive
- name: Setup Go
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
with:
go-version: ${{ matrix.go-version }}
check-latest: true
- name: Generate coverage report
run: make test
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@b9fd7d16f6d7d1b5d2bec1a2887e65ceed900238 # v4.6.0
with:
token: ${{ secrets.CODECOV_TOKEN }}