Cemu/.github/workflows/build_check.yml
1e1 d973fde40b CI: verify MoltenVK download, cancel superseded runs, fix deprecated set-output
- Verify the SHA-256 of the downloaded MoltenVK tarball before extracting it (macOS jobs).

- Add concurrency cancellation so superseded PR/push builds stop instead of running the full matrix to completion.

- Replace the removed ::set-output workflow command with $GITHUB_OUTPUT in the release version calculation.
2026-07-03 01:20:44 +02:00

24 lines
400 B
YAML

name: Build check
on:
pull_request:
paths-ignore:
- "*.md"
types:
- opened
- synchronize
- reopened
push:
paths-ignore:
- "*.md"
branches:
- main
# Cancel superseded runs for the same ref to save CI minutes
concurrency:
group: build-check-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
uses: ./.github/workflows/build.yml