Fix a bunch of misplaced ResetBitReader calls in updatefield parsers #1540
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: WPP | |
| on: | |
| push: | |
| pull_request: | |
| env: | |
| DOTNET_VERSION: '10.0.x' | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, windows-latest, macos-14] | |
| configuration: [Debug, Release] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Install .NET | |
| uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: ${{ env.DOTNET_VERSION }} | |
| - name: Install dependencies | |
| run: dotnet restore | |
| - name: Build | |
| run: dotnet build --configuration ${{ matrix.configuration }} --no-restore | |
| - name: Execute unit tests | |
| run: dotnet test --configuration ${{ matrix.configuration }} --no-build | |
| - name: Upload Artifacts | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: WPP-${{ matrix.os }}-${{ matrix.configuration }} | |
| path: WowPacketParser/bin/${{ matrix.configuration }}/ |