Skip to content

chore: updating main readme with the new pypi package. Fixing publish… #58

chore: updating main readme with the new pypi package. Fixing publish…

chore: updating main readme with the new pypi package. Fixing publish… #58

Workflow file for this run

name: Tests
on:
push:
branches: [ main ]
paths-ignore:
- '**/*.md'
- '**/*.jpg'
- '**/*.gif'
- '**/*.png'
- 'LICENSE'
- 'misc/**'
- '**/*.txt'
- '.gitignore'
- '.python-version'
pull_request:
branches: [ main ]
paths-ignore:
- '**/*.md'
- '**/*.jpg'
- '**/*.gif'
- '**/*.png'
- 'LICENSE'
- 'misc/**'
- '**/*.txt'
- '.gitignore'
- '.python-version'
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- uses: astral-sh/setup-uv@v5
- run: uv sync --dev
- name: Run unit tests
run: uv run pytest tests/test_unit.py -v