Skip to content

Commit

Permalink
bug fix: pre-commit workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
cyschneck committed Mar 18, 2024
1 parent 30d2dbe commit b2f0500
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,13 @@ jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
uses: actions/setup-python@v5.0.0
with:
python-version: '3.12'
- uses: pre-commit/action@v3.0.1
- name: Check out Repository
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5.0.0
with:
python-version: '3.12'

- name: Run pre-commit
uses: pre-commit/action@v3.0.1

0 comments on commit b2f0500

Please sign in to comment.