Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
23 changes: 15 additions & 8 deletions .github/workflows/an_pr_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@ name: Android – PR Check
on:
pull_request:
types: [ opened, synchronize ]
paths:
- 'android/**'
- 'shared/**'
- '.github/workflows/an_pr_build.yml'

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
lint:
Expand All @@ -21,22 +29,21 @@ jobs:
run: |
./gradlew ktlintCheck

- name: Run architecture lint
- name: Run architecture tests
run: |
./gradlew :shared:umbrella:testAlphaDebugUnitTest --tests "konsistTest.*" --no-build-cache --no-configuration-cache

- name: Run tests
run: |
./gradlew :shared:core:testAlphaDebugUnitTest --tests "konsistTest.*" --no-build-cache --no-configuration-cache
./gradlew testAlphaDebugUnitTest --no-build-cache --no-configuration-cache

- name: Publish Test Report
uses: mikepenz/action-junit-report@v4
if: success() || failure()
with:
report_paths: '**/build/test-results/testAlphaDebugUnitTest/TEST-*.xml'
report_paths: '**/build/test-results/**/TEST-*.xml'

- name: Build
run: |
./gradlew generateTwine
./gradlew :android:app:bundleDebug

# - name: UI tests
# run: |
# start_emu_headless.sh
# ./gradlew :android:app:connectedCheck
File renamed without changes.
8 changes: 8 additions & 0 deletions .github/workflows/ios_pr_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@ name: iOS – PR check
on:
pull_request:
types: [ opened, synchronize ]
paths:
- 'ios/**'
- 'shared/**'
- '.github/workflows/an_pr_build.yml'

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
test:
Expand Down
File renamed without changes.
Binary file removed ProjectStructure.png
Binary file not shown.
63 changes: 0 additions & 63 deletions ProjectStructure.puml

This file was deleted.

Loading
Loading