Skip to content

fix: handle JSONDecodeError in _handle_response to prevent crashes #91

fix: handle JSONDecodeError in _handle_response to prevent crashes

fix: handle JSONDecodeError in _handle_response to prevent crashes #91

Workflow file for this run

name: test
on:
pull_request:
push:
branches:
- main
jobs:
test:
name: Test package
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
python-version: ${{ matrix.python-version }}
enable-cache: true
- name: Install hatch
run:
uv pip install hatch
- name: Run tests
run: hatch test --python ${{ matrix.python-version }} --parallel