Split formatters and matchers into separated singleton classes #85
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build & tests | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
env: | |
BUILD_TYPE: Release | |
jobs: | |
run-tests: | |
runs-on: ubuntu-latest | |
container: | |
image: archlinux:latest | |
volumes: | |
- ${{ github.workspace }}:/repo | |
options: -w /repo | |
steps: | |
- uses: actions/checkout@v3 | |
- name: create build environment | |
run: pacman -Syu --noconfirm base-devel cmake extra-cmake-modules python util-linux-libs xorg-server-xvfb | |
- name: install dependencies | |
run: pacman -S --noconfirm plasma-workspace | |
- name: configure cmake | |
run: cmake -B build -S sources -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DBUILD_FUTURE=ON -DBUILD_TESTING=ON | |
- name: build | |
working-directory: /repo/build | |
run: make | |
- name: test | |
working-directory: /repo/build | |
run: xvfb-run -a make test |