Skip to content

Commit

Permalink
ci: only build of code-analysis succeeds
Browse files Browse the repository at this point in the history
  • Loading branch information
vitorhugods committed May 22, 2024
1 parent 4e2feee commit 1454e46
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
File renamed without changes.
8 changes: 4 additions & 4 deletions .github/workflows/gradle-run-unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ concurrency:
cancel-in-progress: true

jobs:
code-style:
uses: ./.github/workflows/codestyle.yml
code-analysis:
uses: ./.github/workflows/code-analysis.yml
unit-tests:
runs-on: buildjet-8vcpu-ubuntu-2204

Expand Down Expand Up @@ -88,14 +88,14 @@ jobs:
build-beta:
if: ${{ github.event_name == 'pull_request' }}
needs: [unit-tests]
needs: [unit-tests, code-analysis]
uses: ./.github/workflows/build-app.yml
with:
flavour: "beta-debug"

build-dev:
if: ${{ github.event_name == 'pull_request' }}
needs: [unit-tests]
needs: [unit-tests, code-analysis]
uses: ./.github/workflows/build-app.yml
with:
flavour: "dev-debug"
Expand Down

0 comments on commit 1454e46

Please sign in to comment.