We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d418269 commit 4b026bcCopy full SHA for 4b026bc
1 file changed
.github/workflows/ci-cd.yml
@@ -11,6 +11,7 @@ on:
11
permissions:
12
contents: read
13
packages: write
14
+ id-token: write
15
16
jobs:
17
test:
@@ -19,6 +20,8 @@ jobs:
19
20
21
steps:
22
- uses: actions/checkout@v4
23
+ with:
24
+ fetch-depth: 0
25
26
- name: Set up Python 3.12
27
uses: actions/setup-python@v3
@@ -41,10 +44,11 @@ jobs:
41
44
python -m pytest tests/ -v --cov=src --cov-report=xml --cov-report=term-missing
42
45
43
46
- name: Upload coverage to Codecov
47
+ if: always()
48
uses: codecov/codecov-action@v4
49
with:
50
files: ./coverage.xml
- fail_ci_if_error: true
51
+ fail_ci_if_error: false
52
verbose: true
53
54
build-and-push:
0 commit comments