feat: Include OpenTelemetry tracing #821
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: Build | |
on: | |
pull_request: | |
push: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: GITHUB CONTEXT | |
env: | |
GITHUB_CONTEXT: ${{ toJson(github) }} | |
run: echo "$GITHUB_CONTEXT" | |
- name: Commit Lint | |
uses: wagoid/commitlint-github-action@master | |
with: | |
firstParent: false | |
failOnWarnings: true | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: '6.0.x' | |
- name: Setup Node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: '18.x' | |
- name: Build Client App | |
working-directory: ./src/KafkaFlow.Admin.Dashboard/ClientApp | |
run: | | |
npm install | |
npm run lint | |
npm run build:prod | |
- name: Build Framework | |
run: dotnet build ./src/KafkaFlow.sln -c Release | |
- name: UnitTest | |
run: | | |
dotnet test src/KafkaFlow.UnitTests/KafkaFlow.UnitTests.csproj -c Release --logger "console;verbosity=detailed" | |
- name: IntegrationTest | |
run: | | |
make init_broker | |
dotnet test src/KafkaFlow.IntegrationTests/KafkaFlow.IntegrationTests.csproj -c Release --logger "console;verbosity=detailed" | |
make shutdown_broker |