Skip to content

Commit 76b11f0

Browse files
committed
Add simple CI run
Signed-off-by: Adrian Reber <[email protected]>
1 parent 33b6be7 commit 76b11f0

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/linux.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Linux, gcc
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build-and-test:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v4
10+
- name: Setup
11+
run: |
12+
sudo apt-get update
13+
sudo sudo apt-get install -y help2man libcdio-dev
14+
- name: Build
15+
run: |
16+
./autogen.sh
17+
make -j4 V=1
18+
- name: Test
19+
run: make check

0 commit comments

Comments
 (0)