Added new point to README.md #84
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: C/C++ CI | |
# Workflow file for windows | |
on: | |
push: | |
branches: [ "develop" ] | |
pull_request: | |
branches: [ "develop" ] | |
jobs: | |
Windows: | |
name: build-windows | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
with: | |
submodules: recursive | |
- name: Running cmake (windows) | |
run: | | |
cd ${{ github.workspace }} | |
mkdir build | |
cd build | |
cmake ../ -DCMAKE_BUILD_TYPE="Debug" | |
- name: Building the project | |
run: | | |
cd ${{ github.workspace }} | |
cd build | |
cmake --build . |