mirror of
https://github.com/cemu-project/Cemu.git
synced 2026-07-10 01:24:41 -06:00
- 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.
24 lines
400 B
YAML
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
|