From 30ffa1f40f4b663cf0794f648d1f72d3501fc5ef Mon Sep 17 00:00:00 2001 From: MohamedRejeb Date: Wed, 24 Jul 2024 10:50:56 +0100 Subject: [PATCH] Fix build action --- .github/workflows/gradle.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index 963cf68c..6755d064 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -20,6 +20,7 @@ permissions: jobs: api-check: runs-on: ubuntu-latest + steps: - uses: actions/checkout@v3 - name: Set up JDK 17 @@ -58,7 +59,7 @@ jobs: deploy: if: github.event_name == 'push' && github.ref == 'refs/heads/main' - needs: build + needs: [test, api-check] runs-on: macos-14 steps: - uses: actions/checkout@v4