Skip to content

Bump abatilo/actions-poetry from 3.0.0 to 3.0.1 #102

Bump abatilo/actions-poetry from 3.0.0 to 3.0.1

Bump abatilo/actions-poetry from 3.0.0 to 3.0.1 #102

Workflow file for this run

name: Run pre-commit
on:
pull_request:
jobs:
pre-commit:
name: Pre-commit
strategy:
matrix:
python-version: [3.11]
runs-on: ubuntu-latest
steps:
- name: ⤵️ Check out code from GitHub
uses: actions/checkout@v4
- name: 🐍 Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: ⚙️ Install Poetry
uses: abatilo/[email protected]
with:
poetry-version: 1.5.1
- name: ⚙️ Install dependencies
run: poetry install
- name: 🚀 Run pre-commit on all files
run: |
poetry run pre-commit run --all-files --show-diff-on-failure --color=always