generated from element-hq/.github
-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
67 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
name: Unit Tests (Enterprise) | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
push: | ||
branches: [ develop ] | ||
|
||
pull_request: | ||
|
||
jobs: | ||
tests: | ||
name: Tests (Enterprise) | ||
runs-on: macos-14 | ||
|
||
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: actions/checkout@v4 | ||
|
||
- uses: actions/cache@v4 | ||
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_enterprise | ||
|
||
- 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@v4 | ||
# 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters