Skip to content

Use Ninja literal

Use Ninja literal #13

Workflow file for this run

name: Build
on:
push:
workflow_dispatch:
env:
BUILD_CONFIG: Release
BUILD_DIR: build
jobs:
test:
strategy:
fail-fast: false
matrix:
include:
- name: linux
os: ubuntu-latest
- name: macOS
os: macos-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: "Build and test"
shell: bash
run: |
ctest --build-and-test . ./build_$OSTYPE --build-generator "Ninja" --test-command ctest --verbose