ae933f2e2a
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
21 lines
404 B
YAML
21 lines
404 B
YAML
name: coverage
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- v2
|
|
|
|
jobs:
|
|
report:
|
|
runs-on: "ubuntu-latest"
|
|
name: report
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Setup go
|
|
uses: actions/setup-go@v4
|
|
with:
|
|
go-version: "1.21"
|
|
- name: Run tests with coverage
|
|
run: ./ci.sh coverage -d "${GITHUB_BASE_REF-HEAD}"
|