Skip to content

chore(deps): bump github/codeql-action from 4.33.0 to 4.35.1 #91

chore(deps): bump github/codeql-action from 4.33.0 to 4.35.1

chore(deps): bump github/codeql-action from 4.33.0 to 4.35.1 #91

Workflow file for this run

name: CI
on:
push:
pull_request:
permissions:
contents: read
jobs:
build-and-test:
name: CI (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- windows-latest
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Configure
run: cmake -S . -B build -D CMAKE_BUILD_TYPE=Release -D BUILD_TESTING=ON
- name: Build
run: cmake --build build --config Release
- name: Test
run: ctest --test-dir build --build-config Release --output-on-failure