diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 82b67d6a..b3b04d30 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -11,18 +11,25 @@ jobs: runs-on: windows-latest steps: - - name: Checkout + - name: Checkout Wave uses: actions/checkout@v3 + with: + 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