Skip to content

Commit 9960417

Browse files
committed
Add make github action
1 parent bec86cd commit 9960417

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/make.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Makefile CI
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v2
15+
16+
- name: Install dependencies
17+
run: sudo apt update && sudo apt install -y asciidoc
18+
19+
- name: Run make
20+
run: make

0 commit comments

Comments
 (0)