Skip to content

chore(deps): bump s3fs from 2025.10.0 to 2026.1.0 #2

chore(deps): bump s3fs from 2025.10.0 to 2026.1.0

chore(deps): bump s3fs from 2025.10.0 to 2026.1.0 #2

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.head_ref || github.run_id }}
cancel-in-progress: true
env:
FORCE_COLOR: 1
jobs:
pytest:
name: Integration Tests / Python ${{ matrix.python-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version:
- "3.10"
- "3.11"
- "3.12"
- "3.13"
- "3.14"
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
with:
python-version: ${{ matrix.python-version }}
- name: Setup uv
uses: astral-sh/setup-uv@61cb8a9741eeb8a550a1b8544337180c0fc8476b # v7.2.0
with:
version: ">=0.8"
- name: Run Tox
run: |
uvx --with=tox-uv tox -e ${{ matrix.python-version }}
typing:
name: Type Checking
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- name: Set up Python
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
with:
python-version: 3.x
- name: Setup uv
uses: astral-sh/setup-uv@61cb8a9741eeb8a550a1b8544337180c0fc8476b # v7.2.0
with:
version: ">=0.8"
- name: Run Tox
run: |
uvx --with=tox-uv tox -e typing