We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a16b38f commit e66e784Copy full SHA for e66e784
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,32 @@
1
+name: Build
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ pull_request:
8
9
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