From 4b6f10554a0fe36632a5aaedaa34ad21b6502b4b Mon Sep 17 00:00:00 2001 From: ewflab Date: Tue, 25 Feb 2020 09:41:09 +0100 Subject: [PATCH] Delete main.yml delete action - test it elsewhere. --- .github/workflows/main.yml | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml deleted file mode 100644 index df2721d..0000000 --- a/.github/workflows/main.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: Test Installing Qt - -on: [push, pull_request] - -jobs: - test: - runs-on: ${{ matrix.os }} - strategy: - matrix: - os: [ubuntu-latest] - steps: - - uses: actions/checkout@v1 - - - uses: actions/setup-node@v1 - with: - node-version: '10.x' - - - name: Install Qt - uses: ./ - with: - aqtversion: "==0.7.1" - modules: qtcharts qtwebengine - - - name: Configure test project on unix - if: (!startsWith(matrix.os, 'windows')) - run: | - cd tests/TestWithModules - ls $Qt5_Dir/lib/cmake - qmake - shell: bash