Checkout commit 2f980209cc4091a4490bb1bafc5d530f16834e58
for JUCE
#62
This file contains 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 (CI) | |
on: | |
pull_request: | |
push: | |
branches: [ 'main', 'develop' ] | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
Build: | |
name: Build ${{ inputs.build_type }} (${{ inputs.os }}) | |
uses: ./.github/workflows/build.reusable.yml | |
strategy: | |
fail-fast: true | |
matrix: | |
os: [ 'macos-13', 'windows-2022' ] | |
with: | |
os: ${{ matrix.os }} | |
build_type: Release |