Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gh-actions: Change linting workflow schedule from daily to weekly. #69

Merged
merged 2 commits into from
Aug 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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}}"
Expand All @@ -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
Expand Down
Loading