-
-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (33 loc) · 917 Bytes
/
CI-CD.yaml
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
36
37
38
39
40
name: Tests and Builds
on:
pull_request:
branches:
- main
workflow_dispatch:
jobs:
test:
if: github.actor != 'actions[bot]'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Setup tests
run: |
python -m pip install --upgrade pip
- name: Run tests & CodeCov
run: |
pip install --upgrade pip && pip install poetry
poetry config virtualenvs.create false && poetry install
coverage run -m pytest
coverage report
coverage xml
- name: Upload coverage reports to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.xml