Skip to content

Fix workflow deployment and tests #7

Fix workflow deployment and tests

Fix workflow deployment and tests #7

Workflow file for this run

name: CI
permissions:
contents: read
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Lint (errors only)
run: |
pylint -E src || true
- name: Run tests
run: |
pytest -q