Skip to content

Commit 8c33075

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

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

.github/workflows/build.yaml

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

0 commit comments

Comments
 (0)