summaryrefslogtreecommitdiff
path: root/.github/workflows/codecov.yml
diff options
context:
space:
mode:
authorJames Mills <prologic@shortcircuit.net.au>2021-07-13 08:34:56 +1000
committerJames Mills <prologic@shortcircuit.net.au>2021-07-13 08:34:56 +1000
commit02e2aebc49d793fa2100a3504cf8b991d4e384ac (patch)
tree2793ffc8577071add3f45508320cfa0c5175a893 /.github/workflows/codecov.yml
parent5c2b402a8aaa2d1693f64f2ca6576597bf28b339 (diff)
Remove Github workflows
Diffstat (limited to '.github/workflows/codecov.yml')
-rw-r--r--.github/workflows/codecov.yml24
1 files changed, 0 insertions, 24 deletions
diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml
deleted file mode 100644
index 03f87ec..0000000
--- a/.github/workflows/codecov.yml
+++ /dev/null
@@ -1,24 +0,0 @@
----
-name: Coverage
-on:
- push:
- branches:
- - master
- pull_request:
-jobs:
- test:
- name: Test and Report
- runs-on: ubuntu-latest
- steps:
- - name: Setup Go
- uses: actions/setup-go@v1
- with:
- go-version: 1.13.x
- - name: Checkout
- uses: actions/checkout@v1
- - name: Test
- run: go test -v -cover -coverprofile=coverage.txt -covermode=atomic -race .
- - name: Report
- uses: codecov/codecov-action@v1
- with:
- token: ${{ secrets.CODECOV_TOKEN }}