Skip to content

ci: Add weekly schedule` to test workflow (#39) #67

ci: Add weekly schedule` to test workflow (#39)

ci: Add weekly schedule` to test workflow (#39) #67

Workflow file for this run

name: Test tap-hookdeck
on:
push:
branches: [main]
paths:
- tap_hookdeck/**
- tests/**
- pyproject.toml
- .github/workflows/test.yml
- .github/workflows/constraints.txt
pull_request:
types: [opened, synchronize, reopened]
paths:
- tap_hookdeck/**
- tests/**
- 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"
jobs:
test:
runs-on: ubuntu-latest
env:
FORCE_COLOR: "1"
UV_CONSTRAINT: ${{ github.workspace }}/.github/workflows/constraints.txt
strategy:
fail-fast: false
matrix:
script: ["test:integration"]
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
include:
- { script: "test:dependencies", python-version: "3.x" }
- { script: "typing:check", python-version: "3.x" }
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
id: setup-python
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- uses: astral-sh/setup-uv@v2
- name: Install Hatch
run: |
uv tool install hatch
hatch --version
- name: Run
env:
HATCH_PYTHON: ${{ steps.setup-python.outputs.python-path }}
TAP_HOOKDECK_API_KEY: ${{ secrets.TAP_HOOKDECK_API_KEY }}
TAP_HOOKDECK_START_DATE: ${{ secrets.TAP_HOOKDECK_START_DATE }}
run: |
hatch run ${{ matrix.script }}