Skip to content

upgraded selectolax to 0.4.6; bumped version to 0.6.0 #5

upgraded selectolax to 0.4.6; bumped version to 0.6.0

upgraded selectolax to 0.4.6; bumped version to 0.6.0 #5

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
tests:
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
python-version:
- '3.10'
- '3.11'
- '3.12'
- '3.13'
defaults:
run:
shell: bash
runs-on: ${{ matrix.os }}
steps:
- name: checkout
uses: actions/checkout@v3
- name: Install Python ${{ matrix.python-version }} on ${{ matrix.os }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: pyproject.toml
- name: Install dependencies
run: pip install -e .[dev,tests,docs]
- name: Run tests
run: pytest --doctest-modules