From 7510e28131c1f265272bb0d5339b07e362f91f5a Mon Sep 17 00:00:00 2001 From: Oussama Hassine Date: Thu, 23 May 2024 17:51:38 +0200 Subject: [PATCH] chore: re-run --- .github/workflows/build-develop-app.yml | 13 ++++++------- .github/workflows/gradle-run-ui-tests.yml | 4 ++-- 2 files changed, 8 insertions(+), 9 deletions(-) diff --git a/.github/workflows/build-develop-app.yml b/.github/workflows/build-develop-app.yml index b3043df1252..1df2359d57e 100644 --- a/.github/workflows/build-develop-app.yml +++ b/.github/workflows/build-develop-app.yml @@ -11,13 +11,12 @@ concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number }} cancel-in-progress: true jobs: - # code-analysis: - # uses: ./.github/workflows/code-analysis.yml - # unit-tests: - # needs: [ detekt ] - # uses: ./.github/workflows/gradle-run-unit-tests.yml + code-analysis: + uses: ./.github/workflows/code-analysis.yml + unit-tests: + uses: ./.github/workflows/gradle-run-unit-tests.yml build-app: -# needs: [ detekt ] + needs: [ unit-tests, code-analysis ] runs-on: ubuntu-latest steps: - name: Checkout @@ -67,4 +66,4 @@ jobs: uses: actions/upload-artifact@v4 with: name: Build Artifacts - path: app/build/outputs/ \ No newline at end of file + path: app/build/outputs/ diff --git a/.github/workflows/gradle-run-ui-tests.yml b/.github/workflows/gradle-run-ui-tests.yml index f6163611b6a..545477f299a 100644 --- a/.github/workflows/gradle-run-ui-tests.yml +++ b/.github/workflows/gradle-run-ui-tests.yml @@ -4,7 +4,7 @@ on: merge_group: push: branches: -# - develop + - develop - release/candidate - prod - internal @@ -12,7 +12,7 @@ on: pull_request: types: [ opened, synchronize ] # Don't rerun on `edited` to save time branches: -# - develop + - develop - release/candidate - prod - internal