Browse Source

Formatting

pull/3572/head
ds5678 3 months ago committed by Jeremy Pritts
parent
commit
fafc434133
  1. 6
      .github/workflows/build-ilspy.yml
  2. 1
      ICSharpCode.Decompiler.Tests/TestCases/Pretty/Issue3571_C.cs

6
.github/workflows/build-ilspy.yml

@ -65,6 +65,9 @@ jobs: @@ -65,6 +65,9 @@ jobs:
- name: Build
run: msbuild ILSpy.sln /p:Configuration=${{ matrix.configuration }} /p:Platform=$env:BuildPlatform /m
- name: Format check
run: dotnet-format whitespace --verify-no-changes --verbosity detailed ILSpy.sln
- name: Execute unit tests
run: dotnet test --solution ilspy.sln --configuration ${{ matrix.configuration }} --no-build --report-trx --results-directory test-results/${{ matrix.configuration }}
@ -81,9 +84,6 @@ jobs: @@ -81,9 +84,6 @@ jobs:
with:
paths: "test-results/${{ matrix.configuration }}/*.trx"
folded: true
- name: Format check
run: dotnet-format whitespace --verify-no-changes --verbosity detailed ILSpy.sln
- name: Verify package contents
if: matrix.configuration == 'debug'

1
ICSharpCode.Decompiler.Tests/TestCases/Pretty/Issue3571_C.cs

@ -1,5 +1,6 @@ @@ -1,5 +1,6 @@
using System;
using System.Runtime.InteropServices;
using ICSharpCode.Decompiler.Tests.TestCases.Pretty.Issue3571_Helper;
namespace ICSharpCode.Decompiler.Tests.TestCases.Pretty

Loading…
Cancel
Save