Skip to content

Commit

Permalink
Run tests on a weekly schedule
Browse files Browse the repository at this point in the history
Also allow manual workflow dispatches.

Pull requests and pushes still create each job twice for a push to an
open pull request within the same repo, but fixing that is non-trivial
and I frankly don't care enough.
  • Loading branch information
FichteFoll committed Jan 12, 2025
1 parent 8b3832c commit 3667d52
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: Tests

on: [push, pull_request]
on:
push:
pull_request:
schedule:
- cron: "* 0 * * SAT"
workflow_dispatch:

jobs:
no_defpkg:
Expand Down

0 comments on commit 3667d52

Please sign in to comment.