Skip to content

feat(seo): add sitemap.xml and robots.txt generation (#48, #60) #168

feat(seo): add sitemap.xml and robots.txt generation (#48, #60)

feat(seo): add sitemap.xml and robots.txt generation (#48, #60) #168

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.14"
- run: pip install ".[lint]"
- run: ruff check .
- run: ruff format --check --diff .
typecheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.14"
- run: pip install -e ".[lint]"
- run: pyright
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.14"
- run: pip install -e ".[test]"
- run: pytest
docker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: hadolint/hadolint-action@v3.1.0
with:
dockerfile: Dockerfile
failure-threshold: error
- name: Build Docker image
run: docker build -t squishmark:ci .