We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1807fbc commit f777754Copy full SHA for f777754
.github/workflows/ci.yml
@@ -6,19 +6,16 @@ jobs:
6
steps:
7
- name: Checkout
8
uses: actions/checkout@v4
9
- with:
10
- fetch-depth: 0
11
- name: Set up Python 3.10
12
uses: actions/setup-python@v4
13
with:
14
python-version: '3.10'
15
- name: Install dependencies
16
run: pip install -r requirements.txt
17
- name: Run tests and collect coverage
18
- run: pytest --cov app ${{ env.CODECOV_ATS_TESTS }}
+ run: pytest --cov app
19
- name: Upload coverage to Codecov
20
- uses: codecov/codecov-action@v4
+ uses: codecov/codecov-action@v5
21
22
verbose: true
23
- env:
24
- CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
+ use_oidc: true
0 commit comments