Skip to content

Add CI workflow, DCO check, NOTICE, and CONTRIBUTING #156

Add CI workflow, DCO check, NOTICE, and CONTRIBUTING

Add CI workflow, DCO check, NOTICE, and CONTRIBUTING #156

Workflow file for this run

name: ci
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: |
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
if [ -f pyproject.toml ]; then pip install -e .; fi
- name: Run tests
run: |
python -m unittest discover -s tests -v 2>/dev/null || echo "No tests yet (project scaffold only)"