Skip to content

Commit

Permalink
ci: Add workflow_dispatch and weekly schedule to test workflow (#130
Browse files Browse the repository at this point in the history
)
  • Loading branch information
edgarrmondragon authored Sep 27, 2024
1 parent 8f11845 commit 18db26e
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,26 @@ name: Test tap-pomelo
on:
push:
branches: [main]
paths:
- tap_pomelo/**
- tests/**
- poetry.lock
- pyproject.toml
- .github/workflows/test.yml
- .github/workflows/constraints.txt
pull_request:
types: [opened, synchronize, reopened]
paths:
- tap_pomelo/**
- tests/**
- poetry.lock
- 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"

env:
FORCE_COLOR: "1"
Expand Down

0 comments on commit 18db26e

Please sign in to comment.