Skip to content

docs: add docstring to _resolve_http_code #2

docs: add docstring to _resolve_http_code

docs: add docstring to _resolve_http_code #2

Workflow file for this run

name: Test
on:
push:
paths:
- "src/**"
pull_request:
paths:
- "src/**"
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.12" ]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: pip install poetry
- name: Install dependencies
run: poetry install --with dev
- name: Test with pytest
run: poetry run pytest