Bump deps/sdl from e9535fa to 83818ee
#16
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: Build | |
| on: | |
| push: | |
| branches: | |
| - "**" | |
| pull_request: | |
| branches: | |
| - "**" | |
| types: [opened, synchronize, reopened] | |
| concurrency: | |
| group: ${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| verify-formatting: | |
| name: Verify Formatting | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout Source | |
| uses: actions/checkout@v4 | |
| - name: Verify Formatting | |
| uses: jidicula/[email protected] | |
| with: | |
| clang-format-version: "20" | |
| build-windows: | |
| name: Build Windows | |
| runs-on: windows-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| configuration: | |
| - Debug | |
| - Release | |
| include: | |
| - configuration: Debug | |
| preset: gha-debug | |
| - configuration: Release | |
| preset: gha-release | |
| steps: | |
| - name: Checkout Source | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| fetch-depth: 0 | |
| - name: Enable Developer Command Prompt | |
| uses: ilammy/[email protected] | |
| - name: CMake Build | |
| run: cmake --workflow --preset=${{matrix.preset}} | |
| build-linux: | |
| name: Build Linux | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| configuration: | |
| - Debug | |
| - Release | |
| include: | |
| - configuration: Debug | |
| preset: gha-debug | |
| - configuration: Release | |
| preset: gha-release | |
| steps: | |
| - name: Checkout Source | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| fetch-depth: 0 | |
| - name: CMake Build | |
| run: cmake --workflow --preset=${{matrix.preset}} |