We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21ce1f1 commit 609c9e1Copy full SHA for 609c9e1
.github/workflows/build.yml
@@ -0,0 +1,39 @@
1
+name: Build libppd
2
+
3
+on:
4
+ push:
5
+ pull_request:
6
7
+jobs:
8
+ build:
9
+ runs-on: ubuntu-latest
10
11
+ steps:
12
+ - name: Checkout repository
13
+ uses: actions/checkout@v4
14
15
+ - name: Install dependencies
16
+ run: |
17
+ sudo apt-get update
18
+ sudo apt-get install -y \
19
+ build-essential \
20
+ autoconf \
21
+ automake \
22
+ autopoint \
23
+ gettext \
24
+ libtool \
25
+ pkg-config \
26
+ libcups2-dev \
27
+ libcupsfilters-dev \
28
+ ghostscript \
29
+ poppler-utils \
30
+ mupdf-tools
31
32
+ - name: Build project
33
34
+ ./autogen.sh
35
+ ./configure
36
+ make
37
38
+ - name: Run tests
39
+ run: make check
0 commit comments