Skip to content

Update dependency idna to v3.7 [SECURITY] #323

Update dependency idna to v3.7 [SECURITY]

Update dependency idna to v3.7 [SECURITY] #323

Workflow file for this run

name: "main"
on: ["push", "workflow_dispatch"]
jobs:
pyright:
runs-on: "ubuntu-latest"
steps:
- uses: "blakeNaccarato/[email protected]"
with:
python-version: "3.11"
- run: pyright
ruff:
runs-on: "ubuntu-latest"
steps:
- uses: "blakeNaccarato/[email protected]"
with:
python-version: "3.11"
- run: "ruff --no-fix --output-format github ."
pytest:
runs-on: "ubuntu-latest"
steps:
- uses: "blakeNaccarato/[email protected]"
with:
python-version: "3.11"
# ! Need to specify `cov-config` as below.
# ! See https://github.com/pytest-dev/pytest-cov/issues/479#issuecomment-1247444988
- run: "pytest --cov --cov-config=pyproject.toml"
- uses: "codecov/[email protected]"
fawltydeps:
runs-on: "ubuntu-latest"
steps:
- uses: "blakeNaccarato/[email protected]"
with:
python-version: "3.11"
- run: "fawltydeps"
bump_project:
needs: ["pyright", "ruff", "pytest", "fawltydeps"]
runs-on: "ubuntu-latest"
steps:
- uses: "blakeNaccarato/[email protected]"
with:
python-version: "3.11"
install-project: false
- uses: "stefanzweifel/[email protected]"
with:
commit_message: "Update project."