From 5c4398f9489fcd0fdc45f277f77543b74c38e80a Mon Sep 17 00:00:00 2001 From: Veronica Berglyd Olsen <1619840+vkbo@users.noreply.github.com> Date: Thu, 6 May 2021 12:50:00 +0200 Subject: [PATCH] Some more tweaks to Linux workflow --- .github/workflows/test_linux.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test_linux.yml b/.github/workflows/test_linux.yml index a7cfafc7..295af4b9 100644 --- a/.github/workflows/test_linux.yml +++ b/.github/workflows/test_linux.yml @@ -18,13 +18,13 @@ jobs: with: python-version: ${{ matrix.python-version }} architecture: x64 - - name: Install Packages + - name: Install Packages (apt) run: | sudo apt update sudo apt install libenchant-dev qt5-default qttools5-dev-tools - name: Checkout Source uses: actions/checkout@v2 - - name: Install Dependencies + - name: Install Dependencies (pip) run: | pip install --upgrade pip pip install -r requirements.txt @@ -32,8 +32,8 @@ jobs: pip install pytest-cov pip install pytest-qt pip install codecov - - name: Update Translations - run: python setup.py qtlrelease + - name: Run Build Commands + run: python setup.py qtlrelease sample - name: Run Tests run: | export QT_QPA_PLATFORM=offscreen