Skip to content

bye linux, can't debug on that platform #120

bye linux, can't debug on that platform

bye linux, can't debug on that platform #120

Workflow file for this run

name: C/C++ CI

Check failure on line 1 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build.yml

Invalid workflow file

`build-macos` is not a valid event name
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
build-macos:
name: macos
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Configure CMake
run: cmake ${{github.workspace}}/tests/
- name: Build
run: cmake --build ${{github.workspace}}/
- name: Test
working-directory: ${{github.workspace}}/
run: ./test
build-windows:
name: windows
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Configure CMake
working-directory: ${{github.workspace}}\tests
run: cmake .
- name: Build
working-directory: ${{github.workspace}}\tests
run: cmake --build .
- name: Test
working-directory: ${{github.workspace}}\tests\Debug
run: ./test