We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51540d4 commit 32c1b02Copy full SHA for 32c1b02
1 file changed
.github/workflows/build.yml
@@ -0,0 +1,31 @@
1
+
2
+name: CI Build
3
4
+on:
5
+ push:
6
+ branches: [main]
7
+ pull_request:
8
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
30
+ cd scripts
31
+ python run-relnet-asp.py -i molise.pl
0 commit comments