Skip to content

Mapping issue

Mapping issue #38

name: Identity service
on:
pull_request:
branches: [ master ]
paths:
- src/Services/Identity/**
- src/Common/**
- .github/workflows/identity_service.yml
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore Jobs.sln
- name: Run unit tests
run: dotnet test src/Services/Identity/Tests/Identity.UnitTests/Identity.UnitTests.csproj --logger "console;verbosity=detailed" --blame
- name: Run integration tests
run: dotnet test src/Services/Identity/Tests/Identity.IntegrationTests/Identity.IntegrationTests.csproj --logger "console;verbosity=detailed" --blame
- name: Run gRPC tests
run: dotnet test src/Services/Identity/Tests/Identity.GRPCTests/Identity.GRPCTests.csproj --logger "console;verbosity=detailed" --blame