Skip to content

Commit

Permalink
add checkout of BlueM.Datasets
Browse files Browse the repository at this point in the history
  • Loading branch information
jamaa committed Jul 15, 2023
1 parent 46c6153 commit 8376725
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
run: vstest.console.exe BlueM.Wave\tests\bin\x64\Debug\Wave.Tests.dll /Platform:x64

0 comments on commit 8376725

Please sign in to comment.