feat: Support Python 3.13 #218
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test tap-pomelo | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
types: [opened, synchronize, reopened] | |
env: | |
FORCE_COLOR: "1" | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
env: | |
PIP_CONSTRAINT: ${{ github.workspace }}/.github/workflows/constraints.txt | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: | |
- "3.11" | |
- "3.12" | |
- "3.13" | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
allow-prereleases: true | |
- name: Upgrade pip | |
run: | | |
pip install pip | |
pip --version | |
- name: Install Poetry | |
run: | | |
pipx install poetry | |
poetry --version | |
- name: Install tox | |
run: | | |
pipx install tox | |
tox --version | |
- name: Run lint command from tox.ini | |
env: | |
TAP_POMELO_API_URL: ${{ secrets.TAP_POMELO_API_URL }} | |
TAP_POMELO_AUDIENCE: ${{ secrets.TAP_POMELO_AUDIENCE }} | |
TAP_POMELO_CLIENT_ID: ${{ secrets.TAP_POMELO_CLIENT_ID }} | |
TAP_POMELO_CLIENT_SECRET: ${{ secrets.TAP_POMELO_CLIENT_SECRET }} | |
TAP_POMELO_START_DATE: ${{ secrets.TAP_POMELO_START_DATE }} | |
run: | | |
tox -e py$(echo ${{ matrix.python-version }} | tr -d .) | |
pre-commit: | |
runs-on: ubuntu-latest | |
env: | |
FORCE_COLOR: "1" | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.11" | |
- uses: pre-commit/action@v3.0.1 | |
- uses: pre-commit-ci/lite-action@v1.0.2 | |
if: always() |