Skip to content

Introduce a separate GHA workflow for Pull Request Validation to validate the correct commit hashes #1

Introduce a separate GHA workflow for Pull Request Validation to validate the correct commit hashes

Introduce a separate GHA workflow for Pull Request Validation to validate the correct commit hashes #1

Workflow file for this run

name: Pull Request Validations
on:
pull_request:
types: [opened, synchronize, reopened]
branches:
- main
concurrency:
group: ci-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build-gradle-project:
name: Build Latest commit and run tests
runs-on: ubuntu-latest
steps:
- name: Checkout project sources using merge commit hash
uses: actions/checkout@v4
- name: Build repository and run tests
uses: ./.github/workflows/composite-actions/build-run-test.yml