64 lines
1.8 KiB
YAML
64 lines
1.8 KiB
YAML
name: Unit Tests (Enterprise)
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
push:
|
|
branches: [ develop ]
|
|
|
|
pull_request:
|
|
|
|
jobs:
|
|
tests:
|
|
name: Tests (Enterprise)
|
|
runs-on: macos-26
|
|
timeout-minutes: 45
|
|
|
|
# Skip in forks
|
|
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository }}
|
|
|
|
concurrency:
|
|
# Only allow a single run of this workflow on each branch, automatically cancelling older runs.
|
|
group: ${{ format('unit-tests-enterprise{0}', github.ref) }}
|
|
cancel-in-progress: true
|
|
|
|
steps:
|
|
- uses: nschloe/action-cached-lfs-checkout@f46300cd8952454b9f0a21a3d133d4bd5684cfc2 #v1.2.3
|
|
with:
|
|
submodules: recursive
|
|
token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
|
|
|
- uses: actions/cache@v5
|
|
with:
|
|
path: vendor/bundle
|
|
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-gems-
|
|
|
|
- name: Setup environment
|
|
run: source ci_scripts/ci_common.sh && setup_github_actions_environment
|
|
|
|
- name: Configure Enterprise
|
|
run: bundle exec fastlane config_element_pro
|
|
|
|
- name: SwiftFormat
|
|
run: swiftformat --lint .
|
|
|
|
- name: Run tests
|
|
run: bundle exec fastlane unit_tests skip_previews:true
|
|
|
|
- name: Zip results # for faster upload
|
|
if: failure()
|
|
working-directory: fastlane/test_output
|
|
run: zip -r UnitTests.zip UnitTests.xcresult
|
|
|
|
- name: Archive artifacts
|
|
uses: actions/upload-artifact@v6
|
|
# We only care about artefacts if the tests fail
|
|
if: failure()
|
|
with:
|
|
name: Results
|
|
path: fastlane/test_output/UnitTests.zip
|
|
retention-days: 1
|
|
if-no-files-found: ignore
|