Skip to content

build(deps): bump actions/upload-artifact from 4.3.4 to 4.3.5 #93

build(deps): bump actions/upload-artifact from 4.3.4 to 4.3.5

build(deps): bump actions/upload-artifact from 4.3.4 to 4.3.5 #93

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@0d381219ddf674d61a7572ddd19d7941e271515c # v2.9.0
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