File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 5
5
build : # make sure build/ci work properly
6
6
runs-on : ubuntu-latest
7
7
steps :
8
- - uses : actions/checkout@v2
8
+ - uses : actions/checkout@v3
9
9
- run : |
10
10
npm install
11
11
- run : |
12
12
npm run all
13
13
test : # make sure the action works on a clean machine without building
14
14
runs-on : ubuntu-latest
15
15
steps :
16
- - uses : actions/checkout@v2
16
+ - uses : actions/checkout@v3
17
17
- uses : ./
18
18
with :
19
19
token : ${{ secrets.GITHUB_TOKEN }}
20
20
thresholdNew : 0.8
21
21
thresholdModified : 0.0
22
- coverageFile : coverage.xml
22
+ coverageFile : coverage.xml
Original file line number Diff line number Diff line change @@ -2,10 +2,10 @@ name: 'Python Coverage'
2
2
description : ' Publish coverage report to a PR & enforce coverage on new & modified files'
3
3
author : ' orgoro'
4
4
inputs :
5
- coverageFile :
5
+ coverageFile :
6
6
required : true
7
7
description : ' local path to a covergae xml file like the output of pytest --cov'
8
- token :
8
+ token :
9
9
required : true
10
10
description : ' github token'
11
11
thresholdAll :
@@ -21,7 +21,7 @@ inputs:
21
21
description : the coverage threshold for average over new files [0,1]
22
22
default : 0.0
23
23
runs :
24
- using : ' node12 '
24
+ using : ' node16 '
25
25
main : ' dist/index.js'
26
26
branding :
27
27
icon : ' umbrella'
You can’t perform that action at this time.
0 commit comments