From 039e91186065d0b2b0125a105d850df6beb948f4 Mon Sep 17 00:00:00 2001 From: "thatonecoder (formerly Coccocoa's Helper)" <157546848+Coccocoahelper@users.noreply.github.com> Date: Sun, 28 Apr 2024 14:40:22 +0100 Subject: [PATCH] yay --- .github/workflows/pull_request.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/pull_request.yml diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml new file mode 100644 index 00000000000..12135b843d6 --- /dev/null +++ b/.github/workflows/pull_request.yml @@ -0,0 +1,27 @@ +name: Build + +on: + pull_request: + branches: [ legacy ] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout repository and submodules + uses: actions/checkout@v4 + with: + submodules: recursive + - name: Setup Java + uses: actions/setup-java@v4 + with: + distribution: "adopt" + java-version: 8 + cache: "gradle" + - name: Build + run: ./gradlew setupCiWorkspace && ./gradlew build + - name: Upload artifact + uses: actions/upload-artifact@v4 + with: + name: LiquidBounce + path: build/libs/*