From 370da23e6d4d4cfd79ae8398fdcea453f6c6852d Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Sun, 17 Aug 2025 14:43:37 +0000 Subject: [PATCH] feat: Add GitHub Actions for CI This commit introduces a new GitHub Actions workflow to build and verify the project automatically. The workflow is configured to trigger on every push and pull request to the `main` branch. It sets up the necessary Java and Bun environments and then executes the Gradle build command. --- .github/workflows/build.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..20388e1 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,23 @@ +name: Build Project + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Set up JDK 21 + uses: actions/setup-java@v4 + with: + java-version: '21' + distribution: 'temurin' + - name: Set up Bun + uses: oven-sh/setup-bun@v1 + - name: Build with Gradle + run: ./gradlew build