Skip to content

Merge pull request #61 from HamishBrownPFR/CropStageTests #178

Merge pull request #61 from HamishBrownPFR/CropStageTests

Merge pull request #61 from HamishBrownPFR/CropStageTests #178

Workflow file for this run

name: Unit Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
release:
types: [ published ]
workflow_dispatch: { }
permissions:
contents: read
actions: read
checks: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: .NET Build
run: dotnet build
- name: .NET Test
run: |
dotnet test --test-adapter-path:. --logger:"junit;LogFilePath=unit_results.xml"