summaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
authorAnne Jan Brouwer <brouwer@annejan.com>2019-10-18 09:26:01 +0200
committerGitHub <noreply@github.com>2019-10-18 09:26:01 +0200
commit30fc277ae8e8e2bcea8740c093994d148ea179a3 (patch)
treee461ed6c595952006b2693d9ca4b60b669669b74 /.github/workflows
parent89c61d9c05948fec1e2aad17d11fb53a152d5ee0 (diff)
First attempt at github actions build
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/ccpp.yml19
1 files changed, 19 insertions, 0 deletions
diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml
new file mode 100644
index 00000000..94026dcb
--- /dev/null
+++ b/.github/workflows/ccpp.yml
@@ -0,0 +1,19 @@
+name: C/C++ CI
+
+on: [push]
+
+jobs:
+ build:
+
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v1
+ - name: Install Qt
+ uses: jurplel/install-qt-action@v1
+ - name: qmake
+ run: qmake
+ - name: make
+ run: make
+ - name: make check
+ run: make check