diff options
| author | Felix Queißner <felix@ib-queissner.de> | 2020-06-17 11:56:22 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-06-17 11:56:22 +0200 |
| commit | ae5bf077498b46f74adb183c938fd85f24d9948d (patch) | |
| tree | 0874cbdd43a0a4cd8d24eb5a15a52cca293aac05 /.github/workflows | |
| parent | 0b86b204209d78f496721ac14ed33691d2c5db1e (diff) | |
| download | kristall-ae5bf077498b46f74adb183c938fd85f24d9948d.tar.gz | |
Create build.yml
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/build.yml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..277f055 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,16 @@ +name: C/C++ CI + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: jurplel/install-qt-action@v2 + - name: make + run: make |
