shared-swift.yml 742 B

12345678910111213141516171819202122232425262728293031323334
  1. name: shared-swift
  2. permissions:
  3. contents: read
  4. on:
  5. workflow_dispatch:
  6. pull_request:
  7. paths:
  8. - 'FirebaseSharedSwift**'
  9. - '.github/workflows/shared-swift.yml'
  10. - '.github/workflows/common.yml'
  11. - '.github/workflows/common_cocoapods.yml'
  12. - 'Gemfile*'
  13. schedule:
  14. # Run every day at 4am (PDT) / 7am (EDT) - cron uses UTC times
  15. - cron: '0 11 * * *'
  16. concurrency:
  17. group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
  18. cancel-in-progress: true
  19. jobs:
  20. spm:
  21. uses: ./.github/workflows/common.yml
  22. with:
  23. target: FirebaseSharedSwiftTests
  24. pod_lib_lint:
  25. uses: ./.github/workflows/common_cocoapods.yml
  26. with:
  27. product: FirebaseSharedSwift
  28. supports_swift6: true