Skip to content

chore: bump actions/checkout from 4.2.1 to 4.2.2 (#192) #343

chore: bump actions/checkout from 4.2.1 to 4.2.2 (#192)

chore: bump actions/checkout from 4.2.1 to 4.2.2 (#192) #343

Workflow file for this run

name: Test
on:
workflow_dispatch:
pull_request:
push:
branches: [main]
jobs:
test-project:
name: Test Project
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04, macos-14, windows-2022]
steps:
- name: Checkout Project
uses: actions/checkout@v4.2.2
- name: Configure Project
run: cmake -G "Unix Makefiles" --preset development
- name: Test Project
run: ctest --preset development