From 83767252cc2cbf6bbd257109e7b4816f9bd68c84 Mon Sep 17 00:00:00 2001 From: jamaa <90166+jamaa@users.noreply.github.com> Date: Sat, 15 Jul 2023 11:25:56 +0200 Subject: [PATCH] add checkout of BlueM.Datasets --- .github/workflows/run-tests.yml | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 82b67d6a..c0de6b1c 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -11,18 +11,24 @@ jobs: runs-on: windows-latest steps: - - name: Checkout + - name: Checkout Wave uses: actions/checkout@v3 + path: BlueM.Wave + - name: Checkout BlueM.Datasets + uses: actions/checkout@v3 + with: + repository: bluemodel/BlueM.Datasets + path: BlueM.Datasets - name: Add msbuild to PATH uses: microsoft/setup-msbuild@v1.1 - name: Add vstest to PATH uses: darenm/Setup-VSTest@v1 - name: Create empty TeeChart license file - run: copy /Y nul > "source\My Project\TeeChart.licenses" + run: copy /Y nul > "BlueM.Wave\source\My Project\TeeChart.licenses" shell: cmd - name: Build Wave - run: msbuild source\Wave.vbproj -restore -property:Platform=x64 -property:Configuration=Debug + run: msbuild BlueM.Wave\source\Wave.vbproj -restore -property:Platform=x64 -property:Configuration=Debug - name: Build Wave.Tests - run: msbuild tests\Wave.Tests.vbproj -restore -property:Platform=x64 -property:Configuration=Debug + run: msbuild BlueM.Wave\tests\Wave.Tests.vbproj -restore -property:Platform=x64 -property:Configuration=Debug - name: Run Tests - run: vstest.console.exe tests\bin\x64\Debug\Wave.Tests.dll /Platform:x64 \ No newline at end of file + run: vstest.console.exe BlueM.Wave\tests\bin\x64\Debug\Wave.Tests.dll /Platform:x64 \ No newline at end of file