6714b79f97
This diff is part of https://github.com/ooni/probe/issues/1335. We are moving more probe-engine workflows to toplevel. The general idea here is to migrate all possible workflows and to delete the ones that we cannot use in this repo (if any).
30 lines
666 B
YAML
30 lines
666 B
YAML
name: coverage
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- "master"
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
go: [ "1.14" ]
|
|
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
|