Skip to content

Bump soupsieve from 2.8.3 to 2.8.4 #1142

Bump soupsieve from 2.8.3 to 2.8.4

Bump soupsieve from 2.8.3 to 2.8.4 #1142

Workflow file for this run

name: Run tests
on:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.11', '3.12']
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install -r requirements/base.txt
pip install tox tox-gh-actions
- name: Check markdown format
run: mdformat --check docs/
- name: Test with tox
run: tox