Skip to content

add github ci11

add github ci11 #3

Workflow file for this run

name: Config Workflow
on:
push:
jobs:
build-and-test:
strategy:
# super important if you want to see all results, even if one fails
# fail-fast is true by default
fail-fast: false
matrix:
use-system-libraries: ["OFF","ON"]
uses: ./.github/workflows/common-workflow.yml # calls the one above
with:
use-system-libraries: ${{ matrix.use-system-libraries }}
secrets: inherit