Improve Injection API, add support for OnlineFix queueing even if you own the game, fix games relying on P2P #83
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: CI | |
| on: | |
| pull_request: | |
| branches: [main] | |
| push: | |
| branches: [main] | |
| # Cancel previous runs on the same PR / branch when new commits arrive. | |
| concurrency: | |
| group: ci-${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| name: Build (${{ matrix.config }}) | |
| runs-on: windows-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| config: [Release, Debug] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ilammy/msvc-dev-cmd@v1 | |
| - name: Configure | |
| run: cmake -S src -B build -G "Ninja Multi-Config" | |
| - name: Build ${{ matrix.config }} | |
| run: cmake --build build --config ${{ matrix.config }} | |
| - name: Upload artifacts | |
| if: success() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: OpenSteamTool-${{ matrix.config }}-pr${{ github.event.pull_request.number || github.run_number }} | |
| path: build/${{ matrix.config }}/ | |
| retention-days: 7 |