summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/distcheck.yml25
1 files changed, 25 insertions, 0 deletions
diff --git a/.github/workflows/distcheck.yml b/.github/workflows/distcheck.yml
new file mode 100644
index 0000000..1dfc494
--- /dev/null
+++ b/.github/workflows/distcheck.yml
@@ -0,0 +1,25 @@
+name: Distcheck CI
+
+on:
+ push:
+ branches: [ master ]
+ pull_request:
+ branches: [ master ]
+
+jobs:
+ build:
+
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v2
+ - name: Install build dependencies
+ run: sudo apt install ubuntu-dev-tools gobject-introspection intltool libgtk-3-dev libindicator3-dev liblightdm-gobject-1-dev pkg-config xfce4-dev-tools
+ - name: autogen
+ run: ./autogen.sh
+ - name: make
+ run: make
+ - name: make check
+ run: make check
+ - name: make distcheck
+ run: make distcheck