Browse Source

Use ${{ matrix.configuration }} instead of hardcoded Debug in --configuration

pull/3507/head
Christoph Wille 2 weeks ago
parent
commit
cc4f53b9e9
  1. 2
      .github/workflows/build-ilspy.yml

2
.github/workflows/build-ilspy.yml

@ -63,7 +63,7 @@ jobs:
run: msbuild ILSpy.sln /p:Configuration=${{ matrix.configuration }} /p:Platform=$env:BuildPlatform /m run: msbuild ILSpy.sln /p:Configuration=${{ matrix.configuration }} /p:Platform=$env:BuildPlatform /m
- name: Execute unit tests - name: Execute unit tests
run: dotnet test --solution ilspy.sln --configuration Debug --no-build --report-trx --report-trx-filename test-results.trx run: dotnet test --solution ilspy.sln --configuration ${{ matrix.configuration }} --no-build --report-trx --report-trx-filename test-results.trx
- name: Upload Test Logs - name: Upload Test Logs
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4

Loading…
Cancel
Save