We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9bb192d commit 4a472bbCopy full SHA for 4a472bb
.github/workflows/coverage.yml
@@ -0,0 +1,18 @@
1
+# This is a basic workflow to help you get started with Actions
2
+name: Coverage
3
+
4
+# Controls when the action will run.
5
+on: [push, pull_request]
6
7
+# A workflow run is made up of one or more jobs that can run sequentially or in parallel
8
+jobs:
9
+ # This workflow contains a single job called "build"
10
+ coverage:
11
+ # The type of runner that the job will run on
12
+ runs-on: ubuntu-latest
13
14
+ # Steps represent a sequence of tasks that will be executed as part of the job
15
+ steps:
16
+ - uses: actions/checkout@v2
17
+ - name: Codecov
18
+ uses: codecov/[email protected]
0 commit comments