Skip to content

Commit 0d4e058

Browse files
author
BrunoSilvaAndrade
committed
fix(pipelines): Fixing pipelines
Fixing event trigger of python-publish.yml Installing configparser packages before reporting coverage
1 parent 554f63c commit 0d4e058

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

.github/workflows/python-publish.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@
99
name: Upload Python Package
1010

1111
on:
12-
push:
13-
tags:
14-
- 'v*'
1512
release:
1613
types: [published]
1714

.github/workflows/report-coverage.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Report Coverage
22

33
on:
4-
release:
4+
push:
55
branches: ["master"]
66

77
permissions:
@@ -22,6 +22,7 @@ jobs:
2222
run: |
2323
python -m pip install --upgrade pip
2424
pip install pytest coverage coveralls
25+
pip install -f requirements.txt
2526
- name: Report coverage
2627
env:
2728
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}

0 commit comments

Comments
 (0)