Skip to content

Commit 00a7eab

Browse files
authored
Add action to build SeBa
On every change to main (push or pull request), build SeBa to see if that still works. If not, the PR should not be merged / the push should be amended.
1 parent 9312a0d commit 00a7eab

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Build SeBa
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@v4
16+
- name: make
17+
run: make
18+
- name: make dstar
19+
run:
20+
cd dstar
21+
make

0 commit comments

Comments
 (0)