From 81bebfa1fe9d4ddbec5800d97ece153d40696ed3 Mon Sep 17 00:00:00 2001 From: Vlad Koshkin Date: Tue, 23 Sep 2025 16:55:03 +0200 Subject: [PATCH] Add GitHub Actions workflow for pull request builds --- .github/workflows/master.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/master.yml diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml new file mode 100644 index 0000000..2eb638e --- /dev/null +++ b/.github/workflows/master.yml @@ -0,0 +1,18 @@ +name: On open pull request +on: [pull_request] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + + - name: Setup JDK 21 + uses: actions/setup-java@v4 + with: + java-version: 21 + distribution: jetbrains + + - name: Run gradle build + run: ./gradlew build