-
Notifications
You must be signed in to change notification settings - Fork 1
42 lines (39 loc) · 1.03 KB
/
ci.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
41
42
name: CI/CD
on:
push:
branches:
- "*"
tags:
- "*"
pull_request:
jobs:
test:
strategy:
matrix:
python-version: [3.8, 3.9]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.0.0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4.7.0
with:
python-version: ${{ matrix.python-version }}
- name: Install poetry
uses: Gr1N/setup-poetry@v8
- name: Install dependencies
run: |
poetry install
pip list
- name: Lint with Flake8
run: |
poetry run flake8
# - name: Test with pytest
# run: |
# poetry run coverage run -m --source=src pytest tests
# poetry run coverage xml
# - name: Report coverage using codecov
# if: github.event_name == 'push' && matrix.python-version == 3.8
# uses: codecov/codecov-action@v1
# with:
# file: ./coverage.xml # optional
# flags: unittests # optional