# Drop this in as .github/workflows/semantica.yml in your own project. # # Installs Semantica and runs a smoke import + your test suite. Swap the # smoke-test step for whatever your project actually does with Semantica # (build a context graph, run an ingest pipeline, etc.). name: Semantica on: push: branches: [main] pull_request: branches: [main] jobs: test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v5 - uses: actions/setup-python@v6 with: python-version: '3.11' cache: 'pip' - name: Install dependencies run: | python -m pip install --upgrade pip pip install semantica pip install -r requirements.txt # your project's own dependencies - name: Run tests run: pytest