We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f5cb340 commit b5c9e4aCopy full SHA for b5c9e4a
.github/workflows/ci.yml
@@ -1,12 +1,20 @@
1
-
2
3
name: Workflow for Codecov example-python
4
on: [push, pull_request]
5
jobs:
6
run:
7
runs-on: ubuntu-latest
8
steps:
+ - name: Checkout
+ uses: actions/checkout@v4
9
+ with:
10
+ fetch-depth: 0
11
+ - name: Set up Python 3.11
12
+ uses: actions/setup-python@v4
13
14
+ python-version: '3.11'
15
+ - name: Install dependencies
16
+ run: pip install -r requirements.txt
17
- name: Upload coverage reports to Codecov
18
uses: codecov/codecov-action@v4.0.1
19
with:
- token: ${{ secrets.CODECOV_TOKEN }}
20
+ token: ${{ secrets.CODECOV_TOKEN }}
0 commit comments