Skip to content

libgestures: remove GlobalShortcutInvoker, rename GlobalShortcutGestu… #9

libgestures: remove GlobalShortcutInvoker, rename GlobalShortcutGestu…

libgestures: remove GlobalShortcutInvoker, rename GlobalShortcutGestu… #9

Workflow file for this run

name: Test
on: [push]
jobs:
test:
runs-on: ubuntu-latest
container:
image: archlinux:base-devel
options: --user root
steps:
- name: Update packages
run: pacman -Syu --noconfirm
- name: Install dependencies
run: pacman -S --noconfirm base-devel git extra-cmake-modules qt6-tools kwin
- name: Check out repository
uses: actions/checkout@v4
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTS=ON
- name: Build
run: cmake --build ${{github.workspace}}/build
- name: Run tests
run: ctest --test-dir ${{github.workspace}}/build --output-on-failure