Skip to content

Commit

Permalink
ci: Add workflow_dispatch and weekly schedule to test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon authored Oct 2, 2024
1 parent d7cf1d4 commit 32e7af2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ on:
- pyproject.toml
- .github/workflows/test.yml
- .github/workflows/constraints.txt
workflow_dispatch:
schedule:
# Run weekly on Monday at 12:00 PM UTC
- cron: "0 12 * * 1"

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
Expand Down Expand Up @@ -86,7 +90,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
python-version: "3.x"
cache: pip
cache-dependency-path: poetry.lock

Expand Down

0 comments on commit 32e7af2

Please sign in to comment.