Skip to content

Refurbish the API client library #1

Refurbish the API client library

Refurbish the API client library #1

Workflow file for this run

name: pytest
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }} with uv
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'uv'
- name: Run tests with pytest
run: uv run pytest