Skip to content

moved

moved #13

Workflow file for this run

# https://docs.github.com/en/actions/reference/workflows-and-actions/workflow-syntax
name: 'On Push'
description: |
This workflow runs on a push.
on:
push: {}
jobs:
run:
name: 'Run'
runs-on: windows-latest
steps:
- name: 'Checkout repository'
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: 'Setup and configure CMake'
uses: './.github/actions/setup_and_configure_cmake'
with:
preset: 'windows-vs-release'