diff --git a/.github/workflows/tests-workflow.yml b/.github/workflows/tests-workflow.yml new file mode 100644 index 00000000..8632a362 --- /dev/null +++ b/.github/workflows/tests-workflow.yml @@ -0,0 +1,24 @@ +# Builds and runs tests + +name: Run tests + +on: push + +jobs: + test: + runs-on: windows-latest + + steps: + - uses: actions/checkout@v4 + + - name: Set up .NET Core + uses: actions/setup-dotnet@v1 + with: + dotnet-version: '7.0.x' + include-prerelease: true + + - name: Run tests with dotnet + run: | + cd FU.API + dotnet test + shell: pwsh