Skip to content

feat: initial site setup with hype blog #1

feat: initial site setup with hype blog

feat: initial site setup with hype blog #1

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.24"
- name: Install hype
run: go install github.com/gopherguides/hype/cmd/hype@latest
- name: Build site
run: hype blog build
- name: Verify output
run: |
test -f public/index.html || (echo "Missing index.html" && exit 1)
test -f public/rss.xml || (echo "Missing rss.xml" && exit 1)
test -f public/sitemap.xml || (echo "Missing sitemap.xml" && exit 1)