Skip to content

Commit d4ca6e5

Browse files
authored
Merge pull request #50 from adrianreber/2024-12-30-ci
Add simple CI run
2 parents 33b6be7 + 76b11f0 commit d4ca6e5

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)