Skip to content

fix: turns out ubuntu 20 is not supported by qt 6.6. Ubuntu 22 is sup… #139

fix: turns out ubuntu 20 is not supported by qt 6.6. Ubuntu 22 is sup…

fix: turns out ubuntu 20 is not supported by qt 6.6. Ubuntu 22 is sup… #139

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
- develop
jobs:
run-tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ubuntu-22.04

Check failure on line 19 in .github/workflows/tests.yml

View workflow run for this annotation

GitHub Actions / Tests

Invalid workflow file

The workflow is not valid. .github/workflows/tests.yml (Line: 19, Col: 13): Unexpected value 'ubuntu-22.04'
flag: [--static, --shared]
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install dependencies
env:
QT_INSTALLER_JWT_TOKEN: ${{ secrets.QT_INSTALLER_JWT_TOKEN }}
run: |
echo "Running on ${{ matrix.os }}"
echo "With flag ${{ matrix.flag }}"
./scripts/setup ${{ matrix.flag }}
- name: Build project
run: |
./scripts/configure -- -DBUILD_TESTING=ON
cmake --build ./build
- name: Run test
run: |
ctest --test-dir ./build --verbose