-
Notifications
You must be signed in to change notification settings - Fork 1
46 lines (43 loc) · 1.33 KB
/
quality_checks.yml
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
43
44
45
46
name: Run tests and other quality checks
on: [pull_request]
jobs:
run_tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-versions: [3.9]
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies and the package
run: |
python -m pip install --upgrade pip poetry
poetry install
- name: Run unit tests
run: poetry run pytest --cov=omnisolver --cov-report=xml
- name: Report coverage
uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
fail_ci_if_error: true
run_quality_checks:
runs-on: ubuntu-latest
steps:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- uses: actions/checkout@v2
- name: Setup poetry
uses: abatilo/actions-poetry@v2
- name:
run: |
poetry install
pip install pre-commit
pre-commit install
pre-commit run -a
- name: Run mypy
run: poetry run mypy --install-types --non-interactive --namespace-packages --explicit-package-bases $(git ls-files '*.py')