Skip to content

Commit 7324bab

Browse files
feat: 100 builds
1 parent 8633d5a commit 7324bab

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ name: Workflow for Codecov example-python
22
on: [push, pull_request]
33
jobs:
44
run:
5+
strategy:
6+
matrix:
7+
label-version: [1,2,3,4,5,6,7,8,9,10]
8+
attempt: [1,2,3,4,5,6,7,8,9,10]
59
runs-on: ubuntu-latest
610
steps:
711
- name: Checkout
@@ -14,16 +18,12 @@ jobs:
1418
python-version: '3.10'
1519
- name: Install dependencies
1620
run: pip install -r requirements.txt
17-
- name: Run ATS
18-
uses: codecov/codecov-ats@v0
19-
env:
20-
CODECOV_STATIC_TOKEN: ${{ secrets.CODECOV_STATIC_TOKEN }}
21-
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
2221
- name: Run tests and collect coverage
23-
run: pytest --cov app ${{ env.CODECOV_ATS_TESTS }}
22+
run: pytest --cov app
2423
- name: Upload coverage to Codecov
2524
uses: codecov/codecov-action@v4
2625
with:
26+
name: ${{ matrix.label-version }}-${{ matrix.attempt }}
2727
flags: smart-tests
2828
verbose: true
2929
env:

0 commit comments

Comments
 (0)