Skip to content

Commit

Permalink
feat: lint workflow (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasvinclav authored Dec 30, 2024
1 parent a112bff commit 3b17f45
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/worflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Lint

on: [push, pull_request]

jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

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

- name: Install pre-commit
run: |
python -m pip install --upgrade pip
pip install pre-commit
- name: Run pre-commit
run: pre-commit run --all-files

0 comments on commit 3b17f45

Please sign in to comment.