Skip to content

support Python 3.12 #85

support Python 3.12

support Python 3.12 #85

Workflow file for this run

name: run
on:
push:
branches:
- main
- ci
pull_request:
branches:
- main
jobs:
tests:
# "ubuntu-latest" does not have Python 3.6
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
python-version: [3.6, 3.7, 3.8, 3.9, "3.10", "3.11", "3.12", "pypy-3.7", "pypy-3.8"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install -e .[testing]
pip install pytest
- name: Run test suite
run: |
pytest
- name: Test CSS inlining
run: |
if [[ "${{ matrix.python-version }}" != "3.6" ]]; then
pip install -e .[css_inlining]
pytest
else
echo "Skipping CSS inlining tests for Python 3.6"
fi