TCVP-2786 and TCVP-3099: Fix dispute updates not clearing and showing on DCF #1633
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Citizen API | |
on: | |
pull_request: | |
paths: | |
- 'src/backend/TrafficCourts/**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
environment: Development | |
defaults: | |
run: | |
working-directory: ./src/backend/TrafficCourts | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 8.x | |
- name: Build Citizen Api | |
run: dotnet build --configuration Release /p:EmitCompilerGeneratedFiles=true | |
- name: Run Tests | |
run: dotnet test --configuration Release /p:EmitCompilerGeneratedFiles=true |