Skip to content

Add Taskfile for local dev loop #56

Add Taskfile for local dev loop

Add Taskfile for local dev loop #56

Workflow file for this run

name: Build
on:
push:
branches: [main, dev]
paths-ignore:
- "Docs/**"
- "**.md"
- "**.txt"
pull_request:
branches: [main, dev]
paths-ignore:
- "Docs/**"
- "**.md"
- "**.txt"
workflow_dispatch:
branches: [main, dev]
jobs:
visual_studio:
runs-on: windows-latest
name: Visual Studio CL
strategy:
fail-fast: false
matrix:
build_type: [Debug, Release]
steps:
- name: Checkout Code
uses: actions/checkout@v3
with:
submodules: true
- name: Add msbuild to PATH
uses: microsoft/[email protected]
- name: Get latest CMake and ninja
uses: lukka/get-cmake@latest
- name: Configure CMake
run: cmake -S ${{github.workspace}} -B ${{github.workspace}}/Build/x64_vs2022 -G "Visual Studio 17 2022" -A x64
- name: Build
run: msbuild Build\x64_vs2022\PEEL.sln /property:Configuration=${{matrix.build_type}}