Skip to content

Add site pages and content #74

Add site pages and content

Add site pages and content #74

Workflow file for this run

name: CI
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies (if any)
run: |
python -m pip install --upgrade pip
pip install pytest
if [ -f requirements-dev.txt ]; then pip install -r requirements-dev.txt; fi
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Sync root assets
run: python -m tools.sync_root
- name: Run tests
run: |
if [ -d tests ]; then pytest; else echo "No tests directory found"; fi