Skip to content

Fix ports for infinity and length check when embedding #1

Fix ports for infinity and length check when embedding

Fix ports for infinity and length check when embedding #1

Workflow file for this run

name: pre-commit hooks check
on:
push:
pull_request:
types: [opened, reopened, synchronize]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
check_pre_commit_hooks:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v3
- name: Install poetry
run: pipx install "poetry<1.9.0"
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
- name: Install dependencies
run: |
poetry env use ${{ matrix.python-version }}
poetry install
- name: Check files with pre-commit
run: |
poetry run pre-commit run --all-files --show-diff-on-failure -v