Skip to content

Merge branch 'master' of https://github.com/aiekick/VdbWriter #2

Merge branch 'master' of https://github.com/aiekick/VdbWriter

Merge branch 'master' of https://github.com/aiekick/VdbWriter #2

Workflow file for this run

name: Windows
on:
push:
branches:
- master
paths-ignore:
- 'cmake/**'
- '.github/**'
- 'doc/**'
- 'samples/**'
jobs:
App:
runs-on: Windows-latest
steps:
- uses: actions/checkout@v3
with:
ref: master
- name: configure
run: mkdir build && cd build && cmake .. -DCMAKE_BUILD_TYPE=Release
- name: build
run: cmake --build build --config Release