Skip to content

Commit 8012509

Browse files
authored
Add CI
1 parent 5ba594f commit 8012509

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/c-cpp.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
build:
9+
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- uses: actions/checkout@v3
14+
- name: Add SWIPL repo
15+
run: sudo apt-add-repository "ppa:swi-prolog/stable" -y
16+
- name: Install dependencies
17+
run: sudo apt update && sudo apt install swi-prolog-nox libjwt-dev -y
18+
- name: make
19+
run: make

0 commit comments

Comments
 (0)