Skip to content

Commit 32c1b02

Browse files
committed
add CI
1 parent 51540d4 commit 32c1b02

1 file changed

Lines changed: 31 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
2+
name: CI Build
3+
4+
on:
5+
push:
6+
branches: [main]
7+
pull_request:
8+
branches: [main]
9+
10+
jobs:
11+
build:
12+
name: ${{ matrix.name }}
13+
runs-on: ubuntu-24.04
14+
steps:
15+
- name: Checkout repository
16+
uses: actions/checkout@v5
17+
with:
18+
submodules: recursive
19+
20+
- name: Install libraries
21+
run: sudo apt-get update && sudo apt-get install -y build-essential cmake bison re2c python3-pip
22+
23+
- name: Run build
24+
run: |
25+
chmod +x build.sh
26+
./build.sh
27+
28+
- name: Sample Run
29+
run: |
30+
cd scripts
31+
python run-relnet-asp.py -i molise.pl

0 commit comments

Comments
 (0)