From 4e244ba30ad96e2850396ae7e8a4f10250896d00 Mon Sep 17 00:00:00 2001 From: Albert Alonso Date: Thu, 23 Oct 2025 18:49:06 +0200 Subject: [PATCH] build: add schedule testing of dependencies Since I don't want to constrain the versions of jax and pcax that I use, I'll just test every week until it breaks. --- .github/dependabot.yml | 9 --------- .github/workflows/pytest.yml | 2 ++ 2 files changed, 2 insertions(+), 9 deletions(-) delete mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index 4cb4f14..0000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,9 +0,0 @@ -version: 2 -updates: - - package-ecosystem: pip - directory: "/" - schedule: - interval: weekly - timezone: CET - open-pull-requests-limit: 10 - diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index afde0ff..7439c0f 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -6,6 +6,8 @@ on: branches: [ main ] pull_request: branches: [ main ] + schedule: + - cron: "0 7 * * 0" # Every Sunday at 07:00 UTC jobs: build: