Skip to content

build(deps-dev): bump the development-dependencies group with 1 update #66

build(deps-dev): bump the development-dependencies group with 1 update

build(deps-dev): bump the development-dependencies group with 1 update #66

Workflow file for this run

name: Run `pre-commit` on PRs
on:
pull_request:
branches: [main, qa, dev]
push:
branches: [main, qa, dev]
jobs:
main:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Install poetry
run: pipx install poetry
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: "poetry"
- run: poetry install
- uses: pre-commit/action@v3.0.0
- uses: pre-commit-ci/lite-action@v1.0.1
if: always()
# Remove the maintenance burden for required status checks.
# https://github.com/marketplace/actions/alls-green#why
all-green:
if: always()
needs:
- main
runs-on: ubuntu-latest
steps:
- name: Ensure all other jobs pass successfully.
uses: re-actors/alls-green@release/v1
with:
jobs: ${{ toJSON(needs) }}