Skip to content

Bump actions/checkout from 4 to 6 #6

Bump actions/checkout from 4 to 6

Bump actions/checkout from 4 to 6 #6

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@v6
- 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