Skip to content

Bump actions/checkout from 4 to 5 #92

Bump actions/checkout from 4 to 5

Bump actions/checkout from 4 to 5 #92

Workflow file for this run

name: Build
on:
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: 'pip'
- name: Upgrade pip
run: python3 -m pip install --upgrade pip
- name: Install dependencies
run: python3 -m pip install -r requirements.txt
- name: Build
run: |
make html
cp -r images _build/html
cp CNAME _build/html
touch _build/html/.nojekyll