Skip to content

feat: Define valid sentence endings more strictly #18

feat: Define valid sentence endings more strictly

feat: Define valid sentence endings more strictly #18

Workflow file for this run

name: Test
on:
push:
jobs:
build:
strategy:
matrix:
platform: [windows-latest, macos-latest, ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install dependencies
run: |
pip install -U pip
pip install '.[dev]'
- name: Run unit tests
run: |
pytest