Skip to content

Support any selector list in :is(), :where() and :matches() #326

Support any selector list in :is(), :where() and :matches()

Support any selector list in :is(), :where() and :matches() #326

Workflow file for this run

name: Checks
permissions:
contents: read
on: [push, pull_request]
jobs:
checks:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- python-version: 3.14
env:
TOXENV: pylint
- python-version: 3.14 # Keep in sync with .readthedocs.yml
env:
TOXENV: docs
- python-version: 3.14
env:
TOXENV: typing
- python-version: 3.14
env:
TOXENV: twinecheck
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
with:
python-version: ${{ matrix.python-version }}
- name: Run check
env: ${{ matrix.env }}
run: |
pip install -U pip
pip install -U tox
tox
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- uses: pre-commit/action@2c7b3805fd2a0fd8c1884dcaebf91fc102a13ecd # v3.0.1