Skip to content

Design revision direct encoding of correlating id zap hmac #189

Design revision direct encoding of correlating id zap hmac

Design revision direct encoding of correlating id zap hmac #189

Workflow file for this run

name: Validate
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build-and-test:
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
configuration: [debug, release]
runs-on: ${{matrix.os}}
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.0.x
- name: Show dotnet info
run: dotnet --info
- name: Restore
run: dotnet restore src
- name: Check Formatting
run: dotnet format --verify-no-changes src --verbosity diagnostic
- name: Build
run: dotnet build src -c ${{matrix.configuration}} --no-restore
- name: Test
run: dotnet test src -c ${{matrix.configuration}} --no-build