Skip to content

.github: add ci actions #6

.github: add ci actions

.github: add ci actions #6

Workflow file for this run

name: Build
on:
push:
branches:
- main
paths:
- '.github/workflows/build.yml'
- 'scripts/**'
- 'src/**'
- 'CMakeLists.txt'
- '*.cmake'
pull_request:
branches:
- main
paths:
- '.github/workflows/build.yml'
- 'scripts/**'
- 'src/**'
- 'CMakeLists.txt'
- '*.cmake'
workflow_dispatch:
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- run: |
mkdir output
cd output
cmake ..
cmake --build .