summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorSean Davis <bluesabre@users.noreply.github.com>2020-06-21 05:05:32 -0400
committerGitHub <noreply@github.com>2020-06-21 05:05:32 -0400
commit3de19065f86dd5270464a39a08d813481f42cb70 (patch)
tree4c0d907abe141ca327b43d8811a4626e52ac076a /.github
parent97e7ac3a59c16e82b19735d8a56470ac47eb59d1 (diff)
downloadlightdm-gtk-greeter-git-3de19065f86dd5270464a39a08d813481f42cb70.tar.gz
Create distcheck.yml
Add new action to run distcheck on each commit
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