Skip to content

ci: add workflow_call hook for workflows #66

ci: add workflow_call hook for workflows

ci: add workflow_call hook for workflows #66

Workflow file for this run

name: Build

Check failure on line 1 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build.yml

Invalid workflow file

`on.workflow_run` does not reference any workflows. See https://docs.github.com/actions/learn-github-actions/events-that-trigger-workflows#workflow_run for more information
on: [pull_request, workflow_dispatch, workflow_run]
concurrency:
group: build-${{ github.event.number }}
cancel-in-progress: true
jobs:
cocoapods:
name: CocoaPods
runs-on: macos-13
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Install Dependencies
run: bundle install
- name: Run pod lib lint
run: bundle exec fastlane build_pod
spm:
name: Swift Package Manager
runs-on: macos-13
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Install Dependencies
run: bundle install
- name: Build SPM test app
run: bundle exec fastlane build_spm
carthage:
name: Carthage
runs-on: macos-13
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Install Dependencies
run: bundle install
- name: Build Carthage test app
run: bundle exec fastlane build_carthage