improve documentation of hydro and steamm Turbines and Governos #2072
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: Build & Test Windows | |
on: | |
push: | |
## Build ## | |
jobs: | |
windows: | |
name: Build on Windows | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- id: build | |
run: | | |
cd ${{ github.workspace }} | |
mkdir build | |
cd build | |
git describe --tags --abbrev=0 --match "v*" | |
cmake -DWITH_PYBIND=OFF .. | |
cmake --build . --target dpsim |