Create codecov.yml
Browse files
.github/workflows/codecov.yml
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
name: Code Coverage
|
2 |
+
on: [push]
|
3 |
+
jobs:
|
4 |
+
Code-Coverage:
|
5 |
+
runs-on: ubuntu-latest
|
6 |
+
steps:
|
7 |
+
- run: echo "π The job was automatically triggered by a ${{ github.event_name }} event."
|
8 |
+
- run: echo "π§ This job is now running on a ${{ runner.os }} server hosted by GitHub!"
|
9 |
+
- run: echo "π The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
|
10 |
+
- name: Check out repository code
|
11 |
+
uses: actions/checkout@v2
|
12 |
+
- run: echo "π‘ The ${{ github.repository }} repository has been cloned to the runner."
|
13 |
+
- run: echo "π₯οΈ The workflow is now ready to test your code on the runner."
|
14 |
+
- name: List files in the repository
|
15 |
+
run: |
|
16 |
+
ls ${{ github.workspace }}
|
17 |
+
- run: echo "π This job's status is ${{ job.status }}."
|