Skip to content

Fix exception on method call in the custom prop mapping (#17) #49

Fix exception on method call in the custom prop mapping (#17)

Fix exception on method call in the custom prop mapping (#17) #49

Workflow file for this run

name: Check PR
on:
push:
branches-ignore:
- main
pull_request:
branches-ignore:
- main
jobs:
build:
permissions: write-all
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup .NET 8
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
- name: Cache NuGet packages
uses: actions/cache@v4
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj') }}
restore-keys: |
${{ runner.os }}-nuget-
- name: Restore dependencies
run: dotnet restore
- name: Build Solution
run: dotnet build --configuration Release --no-restore
- name: Run Tests
run: dotnet test --configuration Release --no-restore --verbosity normal