Skip to content

Bump System.Diagnostics.DiagnosticSource from 7.0.2 to 8.0.0 in /src #77

Bump System.Diagnostics.DiagnosticSource from 7.0.2 to 8.0.0 in /src

Bump System.Diagnostics.DiagnosticSource from 7.0.2 to 8.0.0 in /src #77

Workflow file for this run

# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: Build & Test
on:
push:
branches: [ main, develop ]
paths-ignore:
- '**/*.md'
- 'docs/**'
pull_request:
branches: [ main, develop ]
paths-ignore:
- '**/*.md'
- 'docs/**'
defaults:
run:
working-directory: ./src
concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 7.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore -c Release
- name: Test
run: dotnet test --no-build --verbosity normal -c Release