Skip to content

Bump actions/checkout from 6.0.2 to 7.0.0 #176

Bump actions/checkout from 6.0.2 to 7.0.0

Bump actions/checkout from 6.0.2 to 7.0.0 #176

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:
permissions: {}
jobs:
coverage:
runs-on: ubuntu-latest
permissions:
contents: read
strategy:
fail-fast: false
matrix:
go-version:
- '1.25'
env:
GOPATH: /home/runner/go
steps:
- name: Checkout
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
submodules: recursive
persist-credentials: false
- name: Setup Go
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.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@57e3a136b779b570ffcdbf80b3bdc90e7fab3de2 # v6.0.0
with:
token: ${{ secrets.CODECOV_TOKEN }}