Skip to content

Fix logs

Fix logs #33

Workflow file for this run

name: CI
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ master ]
pull_request:
branches: [ master ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
env:
BUILD_TYPE: Release
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: CMake configure and build
run: |
cmake -B build -A Win32
cmake --build build --config ${{env.BUILD_TYPE}}
- name: Install
run: cmake --install build --prefix install
- name: Artifact
uses: actions/[email protected]
with:
path: install/*