Skip to content

Bump the npm-minor-and-patch group with 2 updates #647

Bump the npm-minor-and-patch group with 2 updates

Bump the npm-minor-and-patch group with 2 updates #647

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Python Package
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
activate-environment: true
- name: Install dependencies
run: |
uv pip install --no-cache-dir -r requirements.txt
uv pip install -r tests/requirements.txt
- name: Lint with ruff
run: |
ruff check
- name: Test with pytest
run: |
pytest
env:
APP_TOKEN: ${{ secrets.APP_TOKEN }}