Skip to content

Universal test

Universal test #117

name: Universal test
on:
workflow_dispatch:
jobs:
build:
runs-on: ${{matrix.os}}
strategy:
fail-fast: false
matrix:
#os: [windows-2022, windows-2019, ubuntu-24.04, ubuntu-22.04, ubuntu-20.04, macos-14, macos-13, macos-12]
os: [macos-14]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Configure CMake
working-directory: ${{github.workspace}}/compcmake
run: cmake -B build -DCMAKE_BUILD_TYPE=Debug --toolchain "${{env.VCPKG_INSTALLATION_ROOT}}/scripts/buildsystems/vcpkg.cmake"
- name: Test
uses: threeal/[email protected]
with:
test-dir: ${{github.workspace}}/compcmake/build
verbose: true
build-config: Debug