Skip to content

Fix pre-commit step in CI #1045

Fix pre-commit step in CI

Fix pre-commit step in CI #1045

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
pre-commit:
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5 # defaults to .python-version
- name: Show python version
run: python --version
- name: Run pre-commit
uses: pre-commit/[email protected]