From 251c8802ed56577fc502c27aa1d4572401e1b0b6 Mon Sep 17 00:00:00 2001 From: Lin Zhihao <59785146+LinZhihao-723@users.noreply.github.com> Date: Wed, 7 Aug 2024 16:43:13 -0400 Subject: [PATCH] gh-actions: Change linting workflow schedule from daily to weekly. (#69) --- .github/workflows/build_wheels.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index 0d092da9..409a7042 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -30,8 +30,8 @@ on: - "src/**" - "tests/**" schedule: - # Run at midnight UTC every day with 15 minutes delay added to avoid high load periods - - cron: "15 0 * * *" + # Run every Tuesday at 00:15 UTC (the 15 is to avoid periods of high load) + - cron: "15 0 * * 2" concurrency: group: "${{github.workflow}}-${{github.ref}}" @@ -47,7 +47,7 @@ jobs: - uses: actions/setup-python@v5 with: python-version: "3.11" - + - run: | pip install --upgrade pip pip install -r requirements-dev.txt