fd333bad16
1. reduce the number of periodic builds 2. just build as part of the release process in most cases 3. shorttests duplicates coverage Preliminary changes as part of https://github.com/ooni/probe/issues/1466
31 lines
703 B
YAML
31 lines
703 B
YAML
# coverage computes the code coverage
|
|
name: coverage
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- "master"
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-20.04
|
|
strategy:
|
|
matrix:
|
|
go: [ "1.16" ]
|
|
steps:
|
|
- uses: actions/setup-go@v1
|
|
with:
|
|
go-version: "${{ 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:
|
|
needs: test
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: shogo82148/actions-goveralls@v1
|
|
with:
|
|
parallel-finished: true
|