Run workflow on push, pull and on a schedule
This commit is contained in:
9
.github/workflows/ruff.yml
vendored
9
.github/workflows/ruff.yml
vendored
@ -1,5 +1,12 @@
|
|||||||
name: Ruff
|
name: Ruff
|
||||||
on: push
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
pull_request:
|
||||||
|
workflow_dispatch:
|
||||||
|
schedule:
|
||||||
|
- cron: '0 0 * * *' # Run every day at midnight
|
||||||
|
|
||||||
env:
|
env:
|
||||||
DJANGO_SECRET_KEY: "abc123"
|
DJANGO_SECRET_KEY: "abc123"
|
||||||
DEBUG: "True"
|
DEBUG: "True"
|
||||||
|
Reference in New Issue
Block a user