Parenthesize LaTeX limit target for one-sided limits, parenthesize Provided by Priority #939
Workflow file for this run
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: 'C# Test' | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - '*' | |
| jobs: | |
| Test: | |
| strategy: | |
| matrix: | |
| os: [windows-latest, ubuntu-latest, macos-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| submodules: 'recursive' | |
| - name: Setup .NET 10 | |
| uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: '10.x' | |
| dotnet-quality: 'preview' | |
| - name: Build Tests # We need it to be able to retry | |
| run: | | |
| dotnet add "Sources/Tests/UnitTests" package GitHubActionsTestLogger | |
| dotnet build Sources/Tests/UnitTests | |
| - name: Test if not to send | |
| if: ${{ matrix.os != 'windows-latest' }} | |
| run: | | |
| dotnet test "Sources/Tests/UnitTests" -c Release -l GitHubActions /p:CollectCoverage=true /p:CoverletOutputFormat=opencover | |
| - name: Test if to send | |
| if: ${{ matrix.os == 'windows-latest' }} | |
| run: | | |
| cd Sources/Tests/UnitTests | |
| dotnet test --collect:"XPlat Code Coverage" -- DataCollectionRunSettings.DataCollectors.DataCollector.Configuration.Format=opencover | |
| cd ../../Utils/Utils | |
| dotnet run CopyCovReport | |
| - name: Info about the coverage report | |
| if: ${{ matrix.os == 'windows-latest' }} | |
| run: dir ./Sources/Tests/UnitTests/coverage.opencover.xml | |
| - name: 'Upload report as artifact' | |
| if: ${{ matrix.os == 'windows-latest' }} | |
| uses: actions/upload-artifact@v6 | |
| with: | |
| name: Report | |
| path: ./Sources/Tests/UnitTests/coverage.opencover.xml | |
| retention-days: 3 | |
| - name: 'Send to codecov' | |
| if: ${{ matrix.os == 'windows-latest' }} | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| file: ./Sources/Tests/UnitTests/coverage.opencover.xml |