Skip to content

Commit

Permalink
Add github action workflow for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sqeezy committed Sep 17, 2023
1 parent da9069b commit b0da25f
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -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: |
6.0.X
7.0.X
8.0.X
- name: Install dependencies
run: dotnet restore
- 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

0 comments on commit b0da25f

Please sign in to comment.