Skip to content

testWorkflow: Remove messing up service method #4

testWorkflow: Remove messing up service method

testWorkflow: Remove messing up service method #4

Workflow file for this run

# 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: Build with dotnet
run: |
cd FU.API
dotnet build
shell: pwsh
- name: Run tests with dotnet
run: |
cd FU.API
dotnet test
shell: pwsh