Skip to content

Initial cleanup

Initial cleanup #17

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