Skip to content
This repository was archived by the owner on Mar 28, 2026. It is now read-only.

Fix base URL determination #1

Fix base URL determination

Fix base URL determination #1

Workflow file for this run

name: test
on:
pull_request:
push:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install --yes \
build-essential \
cmake \
ninja-build \
qtbase5-dev \
qtwebengine5-dev \
qtdeclarative5-dev \
libqt5x11extras5-dev \
libmpv-dev \
libcec-dev \
lirc \
libminizip-dev \
libsdl2-dev
- name: Configure
run: cmake -B build -GNinja -DCMAKE_BUILD_TYPE=Debug
- name: Build
run: cmake --build build
- name: Run tests
run: |
cd build
ctest --output-on-failure