Skip to content

chore(deps): update actions/checkout action to v4.1.3 #42

chore(deps): update actions/checkout action to v4.1.3

chore(deps): update actions/checkout action to v4.1.3 #42

Workflow file for this run

name: Build
on:
push:
branches:
- master
pull_request:
branches:
- master
permissions:
contents: read
jobs:
build:
name: ${{ matrix.type.name }}
runs-on: ubuntu-latest
strategy:
matrix:
type:
- name: Build shared library
cmake_args: -DBUILD_SHARED_LIBS=ON
- name: Build static library
cmake_args: -DBUILD_SHARED_LIBS=OFF
steps:
- name: Check out code
uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3
- name: Configure
run: cmake -B build -DCMAKE_BUILD_TYPE=Release ${{ matrix.type.cmake_args }}
- name: Build
run: cmake --build build --config Release