Skip to content

build(deps): bump github/codeql-action from 3.25.11 to 3.25.12 #78

build(deps): bump github/codeql-action from 3.25.11 to 3.25.12

build(deps): bump github/codeql-action from 3.25.11 to 3.25.12 #78

Workflow file for this run

name: Windows CI Test
on:
push:
branches: [main, master, dev]
pull_request:
branches: [main, master, dev]
permissions:
contents: read
jobs:
build:
runs-on: windows-2022
steps:
- name: Harden Runner
uses: step-security/harden-runner@17d0e2bd7d51742c71671bd19fa12bdc9d40a3d6 # v2.8.1
with:
egress-policy: audit
disable-telemetry: true
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: configure
run: |
cmake -H"." -Bbuild -T host=x86 -A x64 -DCMAKE_BUILD_TYPE="Debug"
- name: building
run: |
cmake --build build --config Debug --target Catch_tests_run -j4
- name: run unit tests
run: |
cd build
cd bin
cd Debug
.\Catch_tests_run.exe