Skip to content

Bump Meziantou.Analyzer from 3.0.18 to 3.0.44 #363

Bump Meziantou.Analyzer from 3.0.18 to 3.0.44

Bump Meziantou.Analyzer from 3.0.18 to 3.0.44 #363

Workflow file for this run

name: Build and Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
env:
CollectCoverage: true
CoverletOutputFormat: opencover
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: 10.0.x
- name: Restore Dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Run Unit Tests
run: dotnet test --no-build --no-restore --verbosity normal --coverage --coverage-output-format cobertura