Skip to content

chore: remove TestPyPI workflow #37

chore: remove TestPyPI workflow

chore: remove TestPyPI workflow #37

Workflow file for this run

name: Lint and Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
name: Lint and Test
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
version: "latest"
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install dependencies
run: make install-dev
- name: Lint
run: make lint
- name: Test and check coverage
run: make coverage