Add GitHub workflow for Ruff
This commit is contained in:
parent
65bd8785a6
commit
230821a918
1 changed files with 14 additions and 0 deletions
14
.github/workflows/ruff.yml
vendored
Normal file
14
.github/workflows/ruff.yml
vendored
Normal 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
|
||||||
Loading…
Add table
Add a link
Reference in a new issue