Mapping issue #38
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: 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 |