Skip to content

build(deps): bump actions/setup-python from 4 to 5 #844

build(deps): bump actions/setup-python from 4 to 5

build(deps): bump actions/setup-python from 4 to 5 #844

Workflow file for this run

name: Pre-commit
on:
push:
branches:
jobs:
pre-commit:
name: Check hooks
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
cache: poetry
- name: Install Python dependencies
run: poetry install
- name: Run hooks
run: poetry run pre-commit run -a