mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-05-02 22:26:59 +02:00
ec12c42c54
# Conflicts: # Config/AppIdentifiers.xcconfig # Config/AppVersion.xcconfig # Podfile # Podfile.lock # Riot/Assets/de.lproj/Vector.strings # Riot/Generated/Images.swift # Riot/Modules/Analytics/DecryptionFailureTracker.m # Riot/Modules/Application/LegacyAppDelegate.h # Riot/Modules/Onboarding/OnboardingCoordinator.swift # Riot/Modules/Room/RoomInfo/RoomInfoList/RoomInfoListViewController.swift # Riot/Modules/Room/RoomViewController.m # Riot/SupportingFiles/Info.plist # Riot/Utils/EventFormatter.m # Riot/Utils/Tools.h # Riot/Utils/Tools.m # Riot/target.yml # RiotSwiftUI/Modules/Common/Mock/MockAppScreens.swift # fastlane/Fastfile # project.yml
64 lines
2.0 KiB
YAML
64 lines
2.0 KiB
YAML
name: Tests CI
|
|
|
|
on:
|
|
# Triggers the workflow on any pull request and push to develop
|
|
push:
|
|
branches: [ develop ]
|
|
pull_request:
|
|
|
|
# Allows you to run this workflow manually from the Actions tab
|
|
workflow_dispatch:
|
|
|
|
env:
|
|
# Make the git branch for a PR available to our Fastfile
|
|
MX_GIT_BRANCH: ${{ github.event.pull_request.head.ref }}
|
|
MapTilerAPIKey: ${{ secrets.MAPTILER_API_KEY }}
|
|
|
|
jobs:
|
|
tests:
|
|
name: Tests
|
|
runs-on: macos-12
|
|
|
|
concurrency:
|
|
# When running on develop, use the sha to allow all runs of this workflow to run concurrently.
|
|
# Otherwise only allow a single run of this workflow on each branch, automatically cancelling older runs.
|
|
group: ${{ github.ref == 'refs/heads/develop' && format('tests-develop-{0}', github.sha) || format('tests-{0}', github.ref) }}
|
|
cancel-in-progress: true
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
# Common cache
|
|
# Note: GH actions do not support yaml anchor yet. We need to duplicate this for every job
|
|
- uses: actions/cache@v2
|
|
with:
|
|
path: Pods
|
|
key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-pods-
|
|
- uses: actions/cache@v2
|
|
with:
|
|
path: vendor/bundle
|
|
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-gems-
|
|
|
|
# Make sure we use the latest version of MatrixSDK
|
|
- name: Reset MatrixSDK pod
|
|
run: rm -rf Pods/MatrixSDK
|
|
|
|
# Common setup
|
|
# Note: GH actions do not support yaml anchor yet. We need to duplicate this for every job
|
|
- name: Brew bundle
|
|
run: brew bundle
|
|
- name: Bundle install
|
|
run: |
|
|
bundle config path vendor/bundle
|
|
bundle install --jobs 4 --retry 3
|
|
- name: Use right MatrixSDK versions
|
|
run: bundle exec fastlane point_dependencies_to_related_branches
|
|
|
|
# Main step
|
|
- name: Unit tests
|
|
run: bundle exec fastlane test
|