Skip to content

Commit e705d68

Browse files
authored
Add basic build (windows, macos todo)
1 parent e7f1f2d commit e705d68

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/make.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Makefile CI
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
8+
9+
jobs:
10+
build:
11+
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- uses: actions/checkout@v2
16+
- uses: dlang-community/setup-dlang@4c99aa991ce7d19dd3064de0a4f2f6b2f152e2d7
17+
- name: make tree-query
18+
run: make
19+
- name: make tree-query-build
20+
run: make tree-query-build
21+
- name: make distcheck
22+
run: make distcheck

0 commit comments

Comments
 (0)