Skip to content

Bump actions/checkout from 5.0.0 to 6.0.1 #220

Bump actions/checkout from 5.0.0 to 6.0.1

Bump actions/checkout from 5.0.0 to 6.0.1 #220

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-24.04, windows-2022]
steps:
- name: Checkout
uses: actions/[email protected]
- name: Configure Project
uses: threeal/[email protected]
with:
options: MY_FIBONACCI_ENABLE_TESTS=ON
run-build: false
- name: Build Project
run: cmake --build build
- name: Test Project
uses: threeal/[email protected]
with:
build-config: Debug
- name: Check Coverage
if: ${{ matrix.os != 'windows-2022' }}
uses: threeal/[email protected]
with:
excludes: build/*
fail-under-line: 100