Skip to content

docs: Moved a release note to the correct category #314

docs: Moved a release note to the correct category

docs: Moved a release note to the correct category #314

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 5
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install dev dependencies
run: pip install .[dev]
- name: Run tests
run: pytest -ra -q --cov=bottle --cov-report=term