Skip to content

Commit 9a1f9f2

Browse files
committed
Add a workflow for checking asciidoc in README
1 parent 5f2336d commit 9a1f9f2

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: build
2+
on:
3+
push:
4+
branches:
5+
- main
6+
pull_request:
7+
branches:
8+
- main
9+
jobs:
10+
run:
11+
name: Check asciidoc
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v4
15+
- run: sudo apt install asciidoc-base
16+
- run: asciidoc README.adoc
17+

0 commit comments

Comments
 (0)