Skip to content

ci: improve GitHub Actions workflow for website builds #1

ci: improve GitHub Actions workflow for website builds

ci: improve GitHub Actions workflow for website builds #1

Workflow file for this run

name: Build Website
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v5
- name: Sync with uv
run: uv sync --extra
- name: Build HTML
run: uv make html