mirror of
https://github.com/MessageKit/MessageKit.git
synced 2026-02-06 19:03:19 +00:00
21 lines
529 B
YAML
21 lines
529 B
YAML
name: Build Example app
|
|
|
|
on: pull_request
|
|
|
|
# This allows a subsequently queued workflow run to interrupt previous runs
|
|
concurrency:
|
|
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
tests:
|
|
name: Build Example app
|
|
runs-on: macos-15
|
|
steps:
|
|
- name: Checkout the Git repository
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 10
|
|
- name: Build and run example project
|
|
run: make build_example
|