-
Notifications
You must be signed in to change notification settings - Fork 268
32 lines (29 loc) · 872 Bytes
/
ci.yml
File metadata and controls
32 lines (29 loc) · 872 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: Workflow for Codecov example-python
on: [push, pull_request]
jobs:
run:
runs-on: ubuntu-latest
steps:
- name: Checkout codecov-cli test branch
uses: actions/checkout@v4
with:
repository: codecov/codecov-cli
ref: bd84ee595d111c01e8967f3b382e8a66492fe127
submodules: 'true'
- name: Run pip install .
run: |
pip install -r requirements.txt
pip install .
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run tests and collect coverage
run: pytest --cov app
- name: Upload to Codecov
run: |
codecovcli -v upload-process