bugfix for SegmentContextFactory #44
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: NET7 CI AND IT | |
on: | |
push: | |
tags: | |
- v* | |
branches: | |
- develop | |
- master | |
pull_request: | |
jobs: | |
net7: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 7.0.100 | |
- name: Setup Submodule | |
run: git submodule update --init | |
- name: Restore dependencies | |
run: dotnet restore | |
- name: Build Protocol | |
run: dotnet build src/SkyApm.Transport.Grpc.Protocol --no-restore | |
- name: Build | |
run: dotnet build --no-restore | |
- name: Test | |
run: dotnet test --no-build --verbosity normal --framework net7.0 |