Skip to content

Bump next from 15.5.6 to 15.5.12 in /betterdocs in the npm_and_yarn group across 1 directory #57

Bump next from 15.5.6 to 15.5.12 in /betterdocs in the npm_and_yarn group across 1 directory

Bump next from 15.5.6 to 15.5.12 in /betterdocs in the npm_and_yarn group across 1 directory #57

Workflow file for this run

name: Tests
permissions:
contents: read
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
name: Test on Python 3.11
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[test]
pip install httpx[http2,brotli]
- name: Run tests
run: pytest tests/lib/ -v