Skip to content

Remove token from disk #121

Remove token from disk

Remove token from disk #121

Workflow file for this run

name: CI
on: push
jobs:
build_and_test:
name: "Build and test"
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install dependencies (linux)
run: sudo apt install ninja-build
if: matrix.os == 'ubuntu-latest'
- name: Install Ninja (windows)
run: choco install ninja
if: matrix.os == 'windows-latest'
- name: Install Qt
uses: jurplel/[email protected]
with:
version: '6.7.1'
- uses: ilammy/msvc-dev-cmd@v1
- uses: actions/[email protected]
- name: Build
run: cmake -S . -B build -G "Ninja Multi-Config" && cmake --build build --config Debug