Skip to content

Add self-exploration project narrative #10

Add self-exploration project narrative

Add self-exploration project narrative #10

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
validate-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: python -m pip install -r requirements.txt
- name: Validate repository structure
run: python scripts/validate_repo.py
- name: Run unit tests
run: python -m unittest tests/test_double_builder.py -v