Skip to content

Commit 4a472bb

Browse files
authored
Create coverage.yml
1 parent 9bb192d commit 4a472bb

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/coverage.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)