Skip to content

Commit e95f26a

Browse files
committed
github: build HTML on Actions
1 parent 7c9e4d9 commit e95f26a

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

.github/workflows/build.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
name: build
3+
on:
4+
pull_request:
5+
branches: [master]
6+
permissions:
7+
contents: read
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v6
13+
- uses: actions/setup-python@v5
14+
with:
15+
python-version: '3.10'
16+
cache: 'pip'
17+
- run: pip install -r requirements.txt
18+
- run: make html

0 commit comments

Comments
 (0)