Skip to content

Add optional error on unmatched dollar delimiters #54

Add optional error on unmatched dollar delimiters

Add optional error on unmatched dollar delimiters #54

Workflow file for this run

name: Python package
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.11', '3.12', '3.13', '3.14', 'pypy-3.11']
steps:
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install sphinx
- name: Lint with pyflakes
run: |
pip install pyflakes
pyflakes .
- name: Test with pytest
run: |
pip install pytest pytest-doctestplus
pytest