etl/.github/workflows/main.yml
2020-08-17 16:43:14 +01:00

25 lines
494 B
YAML

name: CI
on:
push:
branches: [ feature/github-actions-for-windows-compilers ]
pull_request:
branches: [ master ]
jobs:
build-visual-studio:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Setup MSBuild.exe
uses: warrenbuckley/Setup-MSBuild@v1
- name: Build and run
run: |
cmake -DBUILD_TESTS=ON ./
cd test/vs2019
dir
MSBuild etl.sln /property:Configuration="Debug" /property:Platform="Win32"