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 5e5427d commit 5efb538Copy full SHA for 5efb538
.coverage
-52 KB
Dockerfile
action.yml
@@ -2,10 +2,6 @@ name: Coverage Badge
2
description: Generate coverage.py badge
3
author: tj-actions
4
inputs:
5
- token:
6
- description: 'GITHUB_TOKEN or a Repo scoped PAT'
7
- required: true
8
- default: ${{ github.token }}
9
output:
10
description: 'Output path to write the badge.'
11
required: true
@@ -16,10 +12,13 @@ inputs:
16
12
default: 'true'
17
13
18
14
runs:
19
- using: 'docker'
20
- image: 'Dockerfile'
21
- args:
22
- - ${{ inputs.token }}
15
+ using: 'composite'
+ steps:
+ - id: coverage-badge
+ run: |
+ pip install -U coverage-badge
+ bash entrypoint.sh
+ shell: bash
23
branding:
24
icon: menu
25
color: white
0 commit comments