diff --git a/.github/workflows/cover.yaml b/.github/workflows/cover.yaml new file mode 100644 index 0000000..2a7d943 --- /dev/null +++ b/.github/workflows/cover.yaml @@ -0,0 +1,13 @@ +on: + push: + branches: [master] +jobs: + cover: + runs-on: ubuntu-latest + steps: + - uses: actions/setup-go@v2 + - uses: actions/checkout@v2 + - run: make cover + - uses: codecov/codecov-action@v1 + with: + file: .coverprofile