Skip to content

added ruff linting; added github actions configuration #1

added ruff linting; added github actions configuration

added ruff linting; added github actions configuration #1

Workflow file for this run

name: Run Unit Test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install uv
uv pip install -e .
- name: Lint with Ruff
run: |
pip install ruff
ruff check .
- name: Run tests
run: |
python -m unittest discover -s tests -p '*_test.py'