Skip to content

Commit b5c9e4a

Browse files
Updagte Codecov
1 parent f5cb340 commit b5c9e4a

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

.github/workflows/ci.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,20 @@
1-
2-
31
name: Workflow for Codecov example-python
42
on: [push, pull_request]
53
jobs:
64
run:
75
runs-on: ubuntu-latest
86
steps:
7+
- name: Checkout
8+
uses: actions/checkout@v4
9+
with:
10+
fetch-depth: 0
11+
- name: Set up Python 3.11
12+
uses: actions/setup-python@v4
13+
with:
14+
python-version: '3.11'
15+
- name: Install dependencies
16+
run: pip install -r requirements.txt
917
- name: Upload coverage reports to Codecov
1018
uses: codecov/codecov-action@v4.0.1
1119
with:
12-
token: ${{ secrets.CODECOV_TOKEN }}
20+
token: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)