Skip to content

chore(deps): update github/codeql-action action to v4.32.0 #485

chore(deps): update github/codeql-action action to v4.32.0

chore(deps): update github/codeql-action action to v4.32.0 #485

Workflow file for this run

name: Build and Test
on:
push:
branches:
- master
pull_request:
workflow_dispatch:
permissions:
contents: read
jobs:
build:
name: Build and Test
runs-on: ubuntu-24.04
permissions:
contents: read
steps:
- name: Check out code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Install dependencies
uses: ./.github/actions/install-dependencies
- name: Build
run: |
cmake -B build
cmake --build build
- name: Test
run: ctest --test-dir build
- name: Install
run: sudo cmake --install build
- name: Smoke test
run: |
cmake -B build
cmake --build build
./build/ci-cmake
./build/ci-pkgconfig
working-directory: ci