Skip to content

Merge pull request #110 from munterfi/dependabot/pip/typer-0.9.0 #415

Merge pull request #110 from munterfi/dependabot/pip/typer-0.9.0

Merge pull request #110 from munterfi/dependabot/pip/typer-0.9.0 #415

Workflow file for this run

name: check
on: [push, pull_request]
jobs:
check:
runs-on: macos-latest
strategy:
matrix:
python-version: [3.8]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
echo "${HOME}/.local/bin" >> $GITHUB_PATH
- name: Install dependencies
run: |
poetry config virtualenvs.in-project true
poetry install
- name: Run checks
run: |
poetry run flake8 bgpy tests --count --max-complexity=10
poetry run mypy --config-file pyproject.toml .
poetry run pytest --cov=bgpy
cd docs && poetry run make html && cd ..
- name: Upload logs as artifacts
uses: actions/upload-artifact@v2
with:
name: check-logs
path: "tests/*.log"
- name: Upload coverage reports to Codecov
run: |
poetry run codecov