Skip to content

Add license header to .py and .md #4

Add license header to .py and .md

Add license header to .py and .md #4

Workflow file for this run

name: unit-test
on:
pull_request:
types: [ opened, reopened, synchronize, ready_for_review ]
paths:
- src/**
push:
paths:
- src/**
defaults:
run:
working-directory: ./
jobs:
unit-test:
environment:
name: dev
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: "Set up Python"
uses: actions/setup-python@v5
with:
python-version-file: "./.python-version"
- name: Install uv
uses: astral-sh/setup-uv@v6
- name: Install the project
run: uv sync --all-extras --dev
- name: Run tests
run: uv run pytest