Skip to content

chore(main): release 2.10.0 #2193

chore(main): release 2.10.0

chore(main): release 2.10.0 #2193

Workflow file for this run

name: dotnet format
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
check-format:
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
steps:
- name: Check out code
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
- name: Setup .NET SDK
uses: actions/setup-dotnet@d4c94342e560b34958eacfc5d055d21461ed1c5d # v5
with:
global-json-file: global.json
- name: dotnet format
run: |
# Exclude diagnostics to work around dotnet-format issue, see https://github.com/dotnet/sdk/issues/50012
dotnet format --verify-no-changes OpenFeature.slnx --exclude-diagnostics IL2026 --exclude-diagnostics IL3050