Skip to content

Use PEP 440 format for beta tags (v0.0.1b0 instead of v0.0.1-beta.0) #54

Use PEP 440 format for beta tags (v0.0.1b0 instead of v0.0.1-beta.0)

Use PEP 440 format for beta tags (v0.0.1b0 instead of v0.0.1-beta.0) #54

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install -e ".[dev]"
- name: Run tests
run: pytest --tb=short -q