diff --git a/.github/workflows/ci_verify_build_compile.yml b/.github/workflows/ci_verify_build_compile.yml new file mode 100644 index 000000000..9d2577cba --- /dev/null +++ b/.github/workflows/ci_verify_build_compile.yml @@ -0,0 +1,26 @@ +name: Verify build compile + +on: + pull_request: + branches: [main, development] + + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Setup JDK + uses: actions/setup-java@v4 + with: + java-version: 17 + distribution: 'temurin' + cache: 'gradle' + + - name: Grant execute permissions for gradlew + run: chmod +x ./gradlew + + - name: Build Project + run: ./gradlew build \ No newline at end of file