Skip to content

fix(postgres): handle UUID byte array comparison in table assertions #61

fix(postgres): handle UUID byte array comparison in table assertions

fix(postgres): handle UUID byte array comparison in table assertions #61

Workflow file for this run

name: Documentation
on:
push:
branches: [main]
paths:
- 'internal/handler/**'
- 'command/docs.go'
- 'docs/**'
- 'mkdocs.yml'
- 'README.md'
pull_request:
branches: [main]
workflow_dispatch:
permissions:
contents: write
jobs:
generate-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.24'
- name: Build tomato
run: go build -o tomato .
- name: Generate Resource Documentation
run: ./tomato docs
- name: Sync README to docs index
run: cp README.md docs/index.md
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.x
- name: Install MkDocs
run: pip install mkdocs-material
- name: Build Documentation
run: mkdocs build
- name: Deploy to GitHub Pages
if: github.ref == 'refs/heads/main'
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./site