This commit is contained in:
Brage Skjønborg 2026-01-16 20:33:18 +01:00
parent 2bcdc38f09
commit 922bb08954

View File

@ -54,6 +54,12 @@ jobs:
VERSION=$(grep '^version' apps/${{ inputs.app }}/build.gradle.kts | sed 's/.*"\(.*\)".*/\1/') VERSION=$(grep '^version' apps/${{ inputs.app }}/build.gradle.kts | sed 's/.*"\(.*\)".*/\1/')
echo "VERSION=$VERSION" >> $GITHUB_ENV echo "VERSION=$VERSION" >> $GITHUB_ENV
- name: Run unit tests
run: |
chmod +x ./gradlew
./gradlew :apps:${{ inputs.app }}:test --info --stacktrace
- name: Build Java module - name: Build Java module
run: | run: |
chmod +x ./gradlew chmod +x ./gradlew