Add python lint checks on PRs

This commit is contained in:
expelledboy 2024-03-23 12:33:21 +02:00
parent 021ca2a7fa
commit 2c8262cd4d
No known key found for this signature in database
GPG Key ID: C7349812E65CD854

8
.github/workflows/test.yml vendored Normal file
View File

@ -0,0 +1,8 @@
name: test
on: [push, pull_request]
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: chartboost/ruff-action@v1