-
-
Notifications
You must be signed in to change notification settings - Fork 1
39 lines (37 loc) · 1.07 KB
/
main.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
name: CI
on:
push:
branches: "*"
pull_request:
branches: master
jobs:
test:
name: ${{ matrix.python-version }}-build
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8]
steps:
- uses: actions/checkout@v2.4.0
- name: Setup Python
uses: actions/setup-python@v2.3.1
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- uses: actions/cache@v2.1.7
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/dev-requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- run: |
python -m pip install -r dev-requirements.txt
python -m pip install --no-deps -e .
python -m pip list
- name: Running Tests
run: |
python -m pytest --mypy --flake8 --junitxml=test-reports/junit.xml --cov=./ --verbose dac_costing
# - name: Upload coverage to Codecov
# uses: codecov/codecov-action@v1
# with:
# file: test-reports/junit.xml