diff --git a/.github/workflows/windows-msvc-buildscript.yml b/.github/workflows/windows-msvc-buildscript.yml new file mode 100644 index 0000000..c7aad1e --- /dev/null +++ b/.github/workflows/windows-msvc-buildscript.yml @@ -0,0 +1,29 @@ +name: Windows - msvc buildscript + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +env: + BUILD_TYPE: Release + +jobs: + build: + runs-on: windows-latest + + steps: + - uses: actions/checkout@v2 + - name: Update submodules + run: git submodule update --init + + - name: Build + shell: cmd + working-directory: ${{github.workspace}} + run: build-win-msvc.bat + + - name: Test + shell: bash + working-directory: ${{github.workspace}}/build + run: matmake2.exe --help