GH Actions apparently use PowerShell by default now -- fix syntax error.

This commit is contained in:
Michael Hansen
2020-01-03 14:38:36 -08:00
parent 937520abcc
commit 3d3719f844

View File

@@ -8,7 +8,8 @@ jobs:
- uses: actions/checkout@v1
- name: Configure and Build
run: |
mkdir build && cd build
mkdir build
cd build
cmake -G "Visual Studio 16 2019" -A Win32 ..
cmake --build . --config Debug