Skip to content

Add Option to Enable Test Targets #140

Add Option to Enable Test Targets

Add Option to Enable Test Targets #140

Workflow file for this run

name: Build
on:
workflow_dispatch:
pull_request:
push:
branches: [main]
jobs:
build-project:
name: Build Project
runs-on: ${{ matrix.os }}-latest
strategy:
fail-fast: false
matrix:
os: [ubuntu, windows]
steps:
- name: Checkout
uses: actions/checkout@v4.1.7
- name: Configure Project
uses: threeal/cmake-action@v1.3.0
- name: Build Project
run: cmake --build build --config Release
- name: Install Project
run: cmake --install build --prefix install
- name: Upload Project as Artifact
uses: actions/upload-artifact@v4.3.3
with:
name: package-${{ matrix.os }}
path: install