Drop Left-edge tiebreaker from reading-order post-sort #10
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: CI | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| build-and-test: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| global-json-file: global.json | |
| - name: Restore | |
| run: dotnet restore PdfStruct.sln | |
| - name: Build | |
| run: dotnet build PdfStruct.sln --no-restore --configuration Release | |
| - name: Test | |
| run: dotnet test PdfStruct.sln --no-build --configuration Release --verbosity normal |