diff options
author | 2022-06-24 21:59:02 +0530 | |
---|---|---|
committer | 2022-06-24 21:59:02 +0530 | |
commit | ac31abdb0d6b0aa67e26c0aa1a1987ad9835a31f (patch) | |
tree | 5ae5369a02f5f086b30debfd021c941ffe99aae6 | |
parent | 14f190c03bba24aafb22f85134fb85d9b3ddf4ab (diff) | |
download | whatsie-ac31abdb0d6b0aa67e26c0aa1a1987ad9835a31f.tar.gz whatsie-ac31abdb0d6b0aa67e26c0aa1a1987ad9835a31f.zip |
chore(CI): build with github action
-rw-r--r-- | .github/workflows/build.yml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..b4b93c4 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,27 @@ +name: Build Src + +on: + push: + branches-ignore: + - main + pull_request: + workflow_dispatch: + +env: + QT_VERSION: '5.14.2' + +jobs: + Linux-Build: + name: Linux + runs-on: ubuntu-latest + steps: + - name: Checkout sources + uses: actions/checkout@v2 + - name: Install Qt + uses: jurplel/install-qt-action@v2 + with: + version: ${{env.QT_VERSION}} + - name: Build source + run: | + qmake src/ + make |