Merge pull request #727 from xlegalles/GetRidOfGrpcCore #171
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: .NET Core CI | |
on: | |
push: | |
branches: main | |
workflow_dispatch: { } | |
jobs: | |
unit-test: | |
name: Run unit tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v4.0.1 | |
with: | |
dotnet-version: 8.x | |
- name: Build | |
run: dotnet build --configuration Release | |
- name: Test | |
run: dotnet test Client.UnitTests | |
integration-test: | |
name: Run integration tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v4.0.1 | |
with: | |
dotnet-version: 8.x | |
- name: Build | |
run: dotnet build --configuration Release | |
- name: Test | |
run: dotnet test Client.IntegrationTests |