4d80f7d9f0
This diff forward ports adcb0f9ae3b9e074c301d4f7f0e8f2d0ef6466b9. Original commit message: - - - - ensure we use go1.17.3 in workflows - update to a version of ooni/oohttp that uses go1.17.3 This change WILL need to be forward ported to master. Closes https://github.com/ooni/probe/issues/1861
32 lines
726 B
YAML
32 lines
726 B
YAML
# coverage computes the code coverage
|
|
name: coverage
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- "master"
|
|
- "release/**"
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-20.04
|
|
strategy:
|
|
matrix:
|
|
go: [ "1.17.3" ]
|
|
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
|