Skip to content

Updating logging a bit #165

Updating logging a bit

Updating logging a bit #165

Workflow file for this run

name: CI
on:
push:
branches:
- develop
- feature/**
pull_request:
branches:
- develop
- feature/**
workflow_dispatch:
jobs:
build:
name: PR Build
strategy:
matrix:
config: [debug, release]
runs-on: ubuntu-22.04
steps:
- name: Check out Source Code
uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: 6.x
- name: Restore dependencies
run: dotnet restore ApplicationInsights.Kubernetes.sln
- name: Build ApplicationInsights.Kubernetes
run: dotnet build ApplicationInsights.Kubernetes.sln --no-restore --configuration ${{ matrix.config }}
- name: Test
run: dotnet test tests/UnitTests --verbosity normal --configuration ${{ matrix.config }}