-
-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (27 loc) · 840 Bytes
/
Copy pathci.yml
File metadata and controls
35 lines (27 loc) · 840 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
33
34
35
name: Run tests and upload coverage
on:
pull_request
jobs:
test:
name: Run tests and collect coverage
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Set up Python
uses: actions/setup-python@v4
- name: Install dependencies
run: pip install pytest pytest-cov pytest-pep8
- name: Build Python module
run: python3 setup.py sdist
- name: Install Python module
run: pip3 install ./dist/microesb-1.0.tar.gz
- name: Run tests
run: pytest --cov --cov-branch --cov-report=xml
- name: Upload results to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: clauspruefer/python-xml-microparser