Skip to content

Bump Microsoft.NET.Test.Sdk from 17.8.0 to 17.10.0 #158

Bump Microsoft.NET.Test.Sdk from 17.8.0 to 17.10.0

Bump Microsoft.NET.Test.Sdk from 17.8.0 to 17.10.0 #158

Workflow file for this run

name: Check formatting
on:
pull_request:
branches:
- master
- develop
paths:
- src/**
- tests/**
- samples/**
- .github/workflows/**
- "*.props"
- "*.targets"
- "*.sln"
env:
DOTNET_NOLOGO: true
DOTNET_CLI_TELEMETRY_OPTOUT: true
jobs:
format:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v4
- name: Setup .NET SDK
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
source-url: https://nuget.pkg.github.com/graphql-dotnet/index.json
env:
NUGET_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
- name: Install dependencies
run: dotnet restore
- name: Check formatting
run: dotnet format --no-restore --verify-no-changes --severity warn || (echo "Run 'dotnet format' to fix issues" && exit 1)