Skip to content

fix: clean-up project meta data to fix publishing issues #41

fix: clean-up project meta data to fix publishing issues

fix: clean-up project meta data to fix publishing issues #41

Workflow file for this run

name: Python Tests

Check failure on line 1 in .github/workflows/python-tests.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/python-tests.yml

Invalid workflow file

(Line: 16, Col: 11): Unexpected value '', (Line: 17, Col: 5): 'steps' is already defined
on:
pull_request:
branches:
- main
- master
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
steps:
- uses: actions/checkout@v5
- name: Install uv and set the Python version
uses: astral-sh/setup-uv@v6
with:
python-version: ${{ matrix.python-version }}
enable-cache: true
- name: Install the project
run: uv sync --locked --all-extras --dev
- name: Run tests
# For example, using `pytest`
run: uv run pytest tests