chore(deps-dev): bump black from 23.12.1 to 24.10.0 #292
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: app # 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: | | |
poetry shell | |
ruff -V | |
ruff app 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 |