Add GitHub workflow for Ruff

This commit is contained in:
Joakim Hellsén 2024-01-27 23:54:05 +01:00
commit 230821a918

14
.github/workflows/ruff.yml vendored Normal file
View file

@ -0,0 +1,14 @@
name: Ruff
on:
push:
pull_request:
schedule:
- cron: "0 0 * * *" # Run every day
workflow_dispatch:
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: chartboost/ruff-action@v1