Skip to content

build(deps): bump crate-ci/typos from 1.28.4 to 1.29.4 #174

build(deps): bump crate-ci/typos from 1.28.4 to 1.29.4

build(deps): bump crate-ci/typos from 1.28.4 to 1.29.4 #174

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@0080882f6c36860b6ba35c610c98ce87d4e2f26f # v2.10.2
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