Skip to content

Commit

Permalink
temporary schedule every 15 minutes for test and fix schedule branch
Browse files Browse the repository at this point in the history
  • Loading branch information
qgallouedec committed Dec 11, 2024
1 parent 3b31ea7 commit abb8caf
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/tests_latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ on:
push:
branches: [ v0.12-release ]
schedule:
- cron: '0 0 * * *' # Runs daily at midnight UTC
branches: [ v0.12-release ]
- cron: '0,15,30,45 * * * *' # Runs daily at midnight UTC

env:
TQDM_DISABLE: 1
Expand All @@ -15,6 +14,7 @@ jobs:
tests:
name: Tests with dev dependencies
runs-on: 'ubuntu-latest'
if: github.ref == 'refs/heads/v0.12-release' # Ensure the job runs only for the specific branch
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
Expand All @@ -36,7 +36,6 @@ jobs:
run: |
make test
- name: Post to Slack
if: github.ref == 'refs/heads/main' && always() # Check if the branch is main
uses: huggingface/hf-workflows/.github/actions/post-slack@main
with:
slack_channel: ${{ env.CI_SLACK_CHANNEL }}
Expand Down

0 comments on commit abb8caf

Please sign in to comment.