diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d5dafc6a..52f004bc 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -9,15 +9,20 @@ jobs: build-visual-studio: runs-on: windows-latest - steps: - - name: Checkout - uses: actions/checkout@v2 + - uses: actions/checkout@v2 - name: Setup MSBuild.exe uses: warrenbuckley/Setup-MSBuild@v1 - name: Build and run - working-directory: test/vs2019 run: | - msbuild etl.sln + cmake -D BUILD_TESTS=ON ./ + make + ./test/etl_tests + + - name: Save artifacts + uses: actions/upload-artifact@v2 + with: + name: Testfile + path: test/etl_tests \ No newline at end of file