Files
go-toml/.github/workflows/coverage.yml
T
Thomas Pelletier 67bc5422f3 Go 1.19 (#802)
2022-08-15 10:56:33 -04:00

21 lines
406 B
YAML

name: coverage
on:
pull_request:
branches:
- v2
jobs:
report:
runs-on: "ubuntu-latest"
name: report
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup go
uses: actions/setup-go@master
with:
go-version: 1.19
- name: Run tests with coverage
run: ./ci.sh coverage -d "${GITHUB_BASE_REF-HEAD}"