Skip to content

build(deps): bump step-security/harden-runner from 2.10.2 to 2.10.3 #178

build(deps): bump step-security/harden-runner from 2.10.2 to 2.10.3

build(deps): bump step-security/harden-runner from 2.10.2 to 2.10.3 #178

Workflow file for this run

name: MacOS CI Test
on:
push:
branches: [main, master, dev]
pull_request:
branches: [main, master, dev]
permissions:
contents: read
jobs:
build:
runs-on: macos-13
steps:
- name: Harden Runner
uses: step-security/harden-runner@c95a14d0e5bab51a9f56296a4eb0e416910cd350 # v2.10.3
with:
egress-policy: audit
disable-telemetry: true
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Setup Cpp
uses: aminya/setup-cpp@d485b24c1283deafc12b4b8ae90ff09c0d1eb972 # v0.44.0
with:
clangtidy: true
cmake: true
compiler: llvm
- name: configure
run: |
cmake -H. -Bbuild -G "Unix Makefiles" -DCMAKE_BUILD_TYPE="Debug"
- name: building
run: |
cmake --build build --config Debug --target Catch_tests_run -j4
- name: run unit tests
working-directory: ./build/bin
run: |
./Catch_tests_run