From d5626bf4583a3e7123bb0b71f37f99953f99f04e Mon Sep 17 00:00:00 2001 From: Leo <95694941+wonejomb@users.noreply.github.com> Date: Mon, 23 Sep 2024 00:52:59 -0400 Subject: [PATCH] Create build_prs.yml --- .github/workflows/build_prs.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/build_prs.yml diff --git a/.github/workflows/build_prs.yml b/.github/workflows/build_prs.yml new file mode 100644 index 0000000..622fa39 --- /dev/null +++ b/.github/workflows/build_prs.yml @@ -0,0 +1,27 @@ +name: Build PRs + +on: + pull_request: + types: + - synchronize + - opened + - ready_for_review + - reopened + push: + branches: + - 'feature/**' + +jobs: + build: + runs-on: ubutun-latest + steps: + - name: Setup Gradle + uses: gradle/actions/setup-gradle@v4 + with: + cache-read-only: false + + - name: Checkout repository + uses: actions/checkout@v4 + with: + fetch-depth: 1000 + fetch-tags: true