Bump urllib3 from 1.26.18 to 1.26.19 #428
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: 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 |