Skip to content

Bump xunit.runner.visualstudio from 2.8.2 to 3.1.5 #10

Bump xunit.runner.visualstudio from 2.8.2 to 3.1.5

Bump xunit.runner.visualstudio from 2.8.2 to 3.1.5 #10

Workflow file for this run

name: Code Quality Gate
on:
pull_request:
push:
branches: [ main ]
jobs:
quality:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
global-json-file: global.json
- name: Restore
run: dotnet restore
- name: Check formatting
run: dotnet format PragmaticDotNetCodeRules.sln --verify-no-changes --no-restore
- name: Build
run: dotnet build --no-restore --configuration Release
- name: Test
run: dotnet test --no-build --configuration Release