fac33d6fa8
* Add support for `Go 1.21` Signed-off-by: Michal Biesek <michalbiesek@gmail.com> * add go1.21 guard to fuzz_test.go * ci: only build last two go versions * fix workflow yaml syntax error --------- Signed-off-by: Michal Biesek <michalbiesek@gmail.com> Co-authored-by: Thomas Pelletier <thomas@pelletier.codes>
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@v3
|
|
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}"
|