Skip to content
This repository has been archived by the owner on Mar 26, 2024. It is now read-only.

Update workflow configuration #1

Update workflow configuration

Update workflow configuration #1

Workflow file for this run

name: Build & Test
on:
push:
branches: [ "master", "develop", "feat-**" ]
pull_request:
branches: [ "master", "develop", "feat-**" ]
jobs:
cpp-17-debug:
name: C++ 17 (Debug)
uses: karmakrafts/workflows/.github/workflows/cpp.yml@master
with:
cmake_args: "-DKSTD_REFLECT_BUILD_TESTS=ON"
build_type: "Debug"
std_version: 17
cpp-20-debug:
name: C++ 20 (Debug)
uses: karmakrafts/workflows/.github/workflows/cpp.yml@master
with:
cmake_args: "-DKSTD_REFLECT_BUILD_TESTS=ON"
build_type: "Debug"
std_version: 20