| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- name: sessions
- permissions:
- contents: read
- on:
- workflow_dispatch:
- pull_request:
- paths:
- - 'FirebaseSessions**'
- - 'FirebaseSessions.podspec'
- - '.github/workflows/sessions.yml'
- - '.github/workflows/common.yml'
- - '.github/workflows/common_cocoapods.yml'
- - '.github/workflows/common_catalyst.yml'
- - 'Gemfile*'
- schedule:
- # Run every day at 9am (PST) - cron uses UTC times
- - cron: '0 1 * * *'
- concurrency:
- group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
- cancel-in-progress: true
- jobs:
- spm:
- uses: ./.github/workflows/common.yml
- with:
- target: FirebaseSessionsUnit
- catalyst:
- uses: ./.github/workflows/common_catalyst.yml
- with:
- product: FirebaseSessions
- target: FirebaseSessions-Unit-unit
- pod_lib_lint:
- uses: ./.github/workflows/common_cocoapods.yml
- with:
- product: FirebaseSessions
- supports_swift6: true
|