Skip to content

in backend methods, make Request the last parameter in all methods #193

in backend methods, make Request the last parameter in all methods

in backend methods, make Request the last parameter in all methods #193

Workflow file for this run

name: PR Checks
on:
pull_request:
branches: ["main"]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Cache dependencies
uses: actions/cache@v3
with:
path: |
~/.cache/pip
.venv
key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('poetry.lock') }}
restore-keys: |
${{ runner.os }}-pip-${{ matrix.python-version }}-
${{ runner.os }}-pip-
- name: Install
run: |
python -m pip install poetry==1.7.1
poetry install --with=dev
- name: Lint
run: |
poetry run pre-commit run --all-files
- name: Test
run: poetry run pytest