Skip to content

ci: add build-sdist command to Makefile #22

ci: add build-sdist command to Makefile

ci: add build-sdist command to Makefile #22

Workflow file for this run

name: PR Tests
on:
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install uv
uses: astral-sh/setup-uv@v3
- name: Sync dependencies (locked)
run: |
uv sync --locked --all-groups
uv sync --extra rust
- name: Run linters
run: |
make check-linting
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install uv
uses: astral-sh/setup-uv@v3
- name: Sync dependencies (locked)
run: |
uv sync --locked --all-groups
uv sync --extra rust
- name: Run tests
run: |
make test
- name: Run doc tests
run: |
make test-docs