docs: SEO and LLM SEO refinements for Nova-3 and keyterm prompting #16
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| branches: ["**"] | |
| pull_request: | |
| branches: ["**"] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.11" | |
| - run: pip install -r requirements-dev.txt | |
| - run: python3 -m compileall cli core web scripts tests | |
| - run: pytest tests/ -v | |
| docker-build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: docker/setup-buildx-action@v4 | |
| - run: docker build -f cli/Dockerfile -t sg-cli-smoke . | |
| - run: docker build -f web/Dockerfile -t sg-web-smoke . |