chore: update deps #274
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: CI | |
"on": | |
push: | |
pull_request: | |
types: [opened, reopened] | |
env: | |
MODULE_NAME: pytemplate # Edit the name of the module here | |
MIN_TEST_COV: 0 # Edit your min coverage here | |
jobs: | |
CI: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
python-version: ["3.7", "3.8", "3.9", "3.10"] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
pip install poetry | |
- name: Setup poetry | |
run: | | |
poetry config virtualenvs.in-project true | |
poetry install | |
- name: Run lint | |
if: always() | |
run: | | |
source .venv/bin/activate | |
isort -m 9 --line-length 160 $MODULE_NAME tests --check-only | |
pylint --load-plugins pylint_quotes $MODULE_NAME tests | |
docformatter --wrap-summaries 160 --wrap-descriptions 160 -cr $MODULE_NAME tests | |
yapf -rd $MODULE_NAME tests | |
mypy -V | |
mypy $MODULE_NAME tests | |
- name: Run tests | |
run: | | |
source .venv/bin/activate | |
pytest --cov=$MODULE_NAME --cov-report=xml --cov-fail-under=$MIN_TEST_COV tests/unit | |
# - name: Upload coverage to Codecov | |
# uses: codecov/codecov-action@v2 | |
# with: | |
# token: ${{ secrets.CODECOV_TOKEN }} | |
# files: ./coverage.xml | |
# flags: unittests |