Remove token from disk #121
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: 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 |