2020-08-22 11:20:50 +02:00
|
|
|
# Run tests and measure coverage
|
|
|
|
name: golang
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
pull_request:
|
|
|
|
schedule:
|
|
|
|
- cron: "14 17 * * 3"
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: "${{ matrix.os }}"
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
os: ["ubuntu-latest"]
|
|
|
|
go: ["1.14"]
|
|
|
|
steps:
|
|
|
|
- uses: actions/setup-go@v1
|
|
|
|
with:
|
|
|
|
go-version: ${{ matrix.go }}
|
|
|
|
- uses: actions/checkout@v2
|
2021-02-02 14:18:22 +01:00
|
|
|
- run: go test -race -tags shaping -coverprofile=probe-cli.cov -coverpkg=./... ./...
|
2020-08-22 11:20:50 +02:00
|
|
|
- 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
|