From 96a2d9e0acf5268ab13762199058407ce03faae4 Mon Sep 17 00:00:00 2001 From: Draken <131387159+dragonx943@users.noreply.github.com> Date: Mon, 11 Aug 2025 00:23:03 +0700 Subject: [PATCH] ci: Add workflow to automatically test and compile parsers --- .github/workflows/test-branch.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/test-branch.yml diff --git a/.github/workflows/test-branch.yml b/.github/workflows/test-branch.yml new file mode 100644 index 00000000..9b2347c8 --- /dev/null +++ b/.github/workflows/test-branch.yml @@ -0,0 +1,25 @@ +name: Check & Test latest parsers + +on: + push: + branches: + - master + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout repository 🌏 + uses: actions/checkout@v4 + + - name: Set up enviroment 🔧 + uses: actions/setup-java@v4 + with: + java-version: '17' + distribution: 'temurin' + + - name: Compile latest parsers 🚀 + run: | + chmod +x ./gradlew + ./gradlew compileKotlin