Skip to content

Bump importlib-metadata from 7.1.0 to 7.2.1 #911

Bump importlib-metadata from 7.1.0 to 7.2.1

Bump importlib-metadata from 7.1.0 to 7.2.1 #911

Workflow file for this run

name: "Lint code"
on:
pull_request:
jobs:
pre-commit:
name: "Pre-commit"
runs-on: "ubuntu-latest"
steps:
- name: "⤵️ Check out code from GitHub"
uses: "actions/checkout@v4"
- name: "🐍 Set up Python"
uses: "actions/setup-python@v5"
with:
python-version: 3.9
- 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