Skip to content

build(deps): bump github/codeql-action from 4.35.2 to 4.36.0 #148

build(deps): bump github/codeql-action from 4.35.2 to 4.36.0

build(deps): bump github/codeql-action from 4.35.2 to 4.36.0 #148

Workflow file for this run

name: CMake
on:
push:
branches-ignore:
- 'ci/**'
- '!ci/gha**'
- 'dependabot/**'
pull_request:
branches:
- 'master'
permissions: {}
concurrency:
group: cmake-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
test-install:
name: CMake - ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [macos-latest, ubuntu-latest, ubuntu-24.04-arm, windows-latest, windows-11-arm]
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with:
persist-credentials: false
- uses: ilammy/msvc-dev-cmd@0b201ec74fa43914dc39ae48a89fd1d8cb592756 # v1
- name: Configure SIMDe
run: cmake -G Ninja -S . -B build
- name: Build SIMDe
run: cmake --build build
- name: Test SIMDe Package
run: ctest --test-dir build --output-on-failure --verbose