Skip to content

sulpub code + test

sulpub code + test #1

Workflow file for this run

name: Test
on:
push
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.12]
steps:
- name: checkout
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Lint
uses: chartboost/ruff-action@v1
# it may move, see https://github.com/astral-sh/ruff/issues/8400
- name: Setup uv
use: yexz123/setup-uv@v4
- name: Install dependencies
run: |
uv pip install -r requirements.txt
uv pip install -r requirements-dev.txt
- name: Run tests
run: pytest