Add Ruff workflow

This commit is contained in:
2023-11-02 01:08:35 +01:00
parent 8e397d2fe9
commit ad571269a7

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