ooni-probe-cli/.github/workflows/coverage.yml
Simone Basso a1df3b4070
chore: upgrade to go1.18.2 (#750)
I have not upgraded ooni/go yet because I am also checking whether it
would be possible instead to use ooni/oocrypto as documented in the
https://github.com/ooni/probe/issues/2106 issue.

Closes https://github.com/ooni/probe/issues/2070

Closes https://github.com/ooni/probe/issues/2077
2022-05-22 18:11:37 +02:00

36 lines
860 B
YAML

# runs tests and computes the code coverage
name: coverage
on:
pull_request:
push:
branches:
- "master"
- "release/**"
jobs:
measure_coverage:
runs-on: ubuntu-20.04
strategy:
matrix:
go:
- "1.18.2"
steps:
- uses: magnetikonline/action-golang-cache@v2
with:
go-version: "${{ matrix.go }}"
cache-key-suffix: "-coverage-${{ matrix.go }}"
- uses: actions/checkout@v2
- run: go test -short -race -tags shaping -coverprofile=probe-cli.cov ./...
- uses: shogo82148/actions-goveralls@v1
with:
path-to-profile: probe-cli.cov
parallel: true
finish_measuring_coverage:
needs: measure_coverage
runs-on: ubuntu-latest
steps:
- uses: shogo82148/actions-goveralls@v1
with:
parallel-finished: true