Skip to content

LCORE-1696: Updated Black CI job #314

LCORE-1696: Updated Black CI job

LCORE-1696: Updated Black CI job #314

Workflow file for this run

name: Unit Tests
on:
- push
- pull_request
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install uv and set up Python 3.12
uses: astral-sh/setup-uv@v5
with:
python-version: '3.12'
- name: Install dependencies
run: make install
- name: Run unit tests
run: make test-unit