Modernize packaging and plugin discovery #75
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.10" | |
- 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: MYPYPATH=src poetry run mypy --install-types --non-interactive --namespace-packages --explicit-package-bases src |