Skip to content

test: add edge case test for whitespace-only input #39

test: add edge case test for whitespace-only input

test: add edge case test for whitespace-only input #39

Workflow file for this run

name: Main
on:
pull_request: null
push:
branches:
- master
jobs:
build:
name: Linux
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: setup python
uses: actions/setup-python@v6
with:
python-version: |
pypy3.11
3.10
3.11
3.12
3.13
3.14
- name: Install dependencies
run: |
python -m pip install coveralls tox tox-uv
- name: Run test
run: |
tox
- name: Coveralls
run: coveralls --service=github
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}