Skip to content

Commit e66e784

Browse files
saidsay-socsete
authored andcommitted
ci: add github actions workflow
1 parent a16b38f commit e66e784

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

.github/workflows/ci.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Build
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
8+
branches:
9+
- master
10+
11+
jobs:
12+
build-check:
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- name: Checkout repository
17+
uses: actions/checkout@v4
18+
19+
- name: Install dependencies
20+
run: |
21+
sudo apt-get update
22+
sudo apt-get install -y build-essential libtool intltool autoconf automake libcurl4-openssl-dev \
23+
pkg-config libglib2.0-dev libgtk-3-dev libgoocanvas-2.0-dev
24+
25+
- name: Run autoconf
26+
run: ./autogen.sh
27+
28+
- name: Build
29+
run: make
30+
31+
- name: Run tests
32+
run: make check

0 commit comments

Comments
 (0)