Skip to content

no manual allocate character for non-bind(C) #87

no manual allocate character for non-bind(C)

no manual allocate character for non-bind(C) #87

Workflow file for this run

name: ci_msvc
env:
CTEST_NO_TESTS_ACTION: error
CTEST_PARALLEL_LEVEL: 0
CMAKE_BUILD_PARALLEL_LEVEL: 4
on:
push:
paths:
- "**.c"
- "**.cpp"
- "**/CMakeLists.txt"
- "**.cmake"
- ".github/workflows/ci_msvc.yml"
jobs:
msvc:
runs-on: windows-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v4
- name: config
run: cmake -Bbuild -Dfortran=no
- name: Debug build
run: cmake --build build --config Debug
- name: Debug test
run: ctest --test-dir build -C Debug -V
- name: Release build
run: cmake --build build --config Release
- name: Release test
run: ctest --test-dir build -C Release -V