From 16e8760e9e253e43af610324c2cca3a22e287605 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20Jos=C3=A9=20Pereira?= Date: Mon, 16 Nov 2020 12:10:24 -0300 Subject: [PATCH] github MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Patrick José Pereira --- .github/workflows/test.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 000000000..36c63f649 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,23 @@ +name: Deploy mavlink2rest + +on: [push, pull_request] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Cache Qt + id: cache-qt + uses: actions/cache@v1 + with: + path: ../Qt + key: ${{ runner.os }}-QtCache + + - name: Install Qt + uses: jurplel/install-qt-action@v2 + with: + version: '5.15' + target: 'desktop' + cached: ${{ steps.cache-qt.outputs.cache-hit }} + modules: qtcharts \ No newline at end of file