Skip to content

Commit

Permalink
First attempt at github actions build
Browse files Browse the repository at this point in the history
  • Loading branch information
annejan authored Oct 18, 2019
1 parent 89c61d9 commit 30fc277
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/ccpp.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 30fc277

Please sign in to comment.