diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 00000000..3ceb8b3a --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,26 @@ +name: Tests + +on: [push] + +jobs: + build: + + runs-on: windows-latest + + steps: + - uses: actions/checkout@v3 + - name: Setup .NET Core SDKs + uses: actions/setup-dotnet@v3 + with: + dotnet-version: | + 3.1.X + 6.0.X + 7.0.X + - name: Install dependencies + run: dotnet msbuild -target:restore .\build.proj + - name: Build + run: dotnet msbuild -target:solution .\build.proj + - name: Unit Tests + run: dotnet msbuild -target:unittests .\build.proj + - name: Story Tests + run: dotnet msbuild -target:storytests .\build.proj \ No newline at end of file