Skip to content

ci: Bump the actions group across 1 directory with 3 updates (#32) #69

ci: Bump the actions group across 1 directory with 3 updates (#32)

ci: Bump the actions group across 1 directory with 3 updates (#32) #69

Workflow file for this run

### A CI workflow template that runs linting and python testing
### TODO: Modify as needed or as desired.
name: Test tap-greenhouse
on:
push:
branches: [main]
paths:
- .github/workflows/test.yml
- tap_greenhouse/**
- tests/**
- pyproject.toml
- uv.lock
pull_request:
paths:
- .github/workflows/test.yml
- tap_greenhouse/**
- tests/**
- pyproject.toml
- uv.lock
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
env:
FORCE_COLOR: 1
jobs:
pytest:
name: Integration Tests / Python ${{ matrix.python-version }}
runs-on: ubuntu-latest
strategy:
max-parallel: 1
fail-fast: true
matrix:
python-version:
- "3.10"
- "3.11"
- "3.12"
- "3.13"
- "3.14"
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: ${{ matrix.python-version }}
- name: Setup uv
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
with:
version: ">=0.8"
- name: Run Tox
env:
TAP_GREENHOUSE_CLIENT_ID: ${{ secrets.TAP_GREENHOUSE_CLIENT_ID }}
TAP_GREENHOUSE_CLIENT_SECRET: ${{ secrets.TAP_GREENHOUSE_CLIENT_SECRET }}
run: |
uvx --with=tox-uv tox -e ${{ matrix.python-version }}
typing:
name: Type Checking
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Set up Python
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version-file: .python-version
- name: Setup uv
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
with:
version: ">=0.8"
- name: Run Tox
run: |
uvx --with=tox-uv tox -e typing