Fix culture-dependent date formatting using RFC 1123 for HTTP headers and sortable ISO 8601 for InnerError #2096
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: .NET | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: [ main ] | |
| paths-ignore: ['samples/**', '**.md', '.vscode/**', '**.svg'] | |
| pull_request: | |
| # The branches below must be a subset of the branches above | |
| paths-ignore: ['samples/**', '**.md', '.vscode/**', '**.svg'] | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@d4c94342e560b34958eacfc5d055d21461ed1c5d # v5.0.0 | |
| with: | |
| dotnet-version: 9.0.x | |
| - name: Restore workloads | |
| run: dotnet workload restore | |
| - name: Restore dependencies | |
| run: dotnet restore DevProxy.sln --locked-mode | |
| - name: Build | |
| run: dotnet build DevProxy.sln --no-restore | |
| # We really should have tests, putting these steps here for when we have a build process | |
| # - name: Test | |
| # run: dotnet test DevProxy.sln --no-build --verbosity normal --collect:"XPlat Code Coverage" | |
| # - name: Install report generator | |
| # run: dotnet tool install --global dotnet-reportgenerator-globaltool | |
| # - name: Generate coverage report | |
| # run: reportgenerator -reports:**/coverage.cobertura.xml -targetdir:./reports/coverage | |
| # - uses: actions/upload-artifact@v3 | |
| # with: | |
| # name: coverage | |
| # path: reports/coverage |