Skip to content

spin off grpc reporter stuff from protocol stuff #43

spin off grpc reporter stuff from protocol stuff

spin off grpc reporter stuff from protocol stuff #43

Workflow file for this run

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