Skip to content

added to 2 addional options to the 'Referral Source' dropdown to the … #239

added to 2 addional options to the 'Referral Source' dropdown to the …

added to 2 addional options to the 'Referral Source' dropdown to the … #239

Workflow file for this run

name: .NET Core Unit Tests
on:
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build the solution
run: dotnet build --configuration Release --no-restore
- name: Run unit tests
run: dotnet test --no-restore --verbosity normal