Make sure spawns which get CreateObject1 and CreateObject2 are flagge… #1191
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: '9.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@v3 | |
| - name: Install .NET | |
| uses: actions/setup-dotnet@v3 | |
| 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@v4 | |
| with: | |
| name: WPP-${{ matrix.os }}-${{ matrix.configuration }} | |
| path: WowPacketParser/bin/${{ matrix.configuration }}/ |