From b9bdacd65ecce1bb4187ac1d8d87c304832d688e Mon Sep 17 00:00:00 2001 From: Chen Meng <78586843+slmpc@users.noreply.github.com> Date: Sun, 6 Oct 2024 16:31:50 +0800 Subject: [PATCH] Github Action --- .github/workflows/build.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 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..9731ced --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,26 @@ +name: Build + +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' + + - run: chmod +x gradlew + + - name: Build with Gradle Wrapper + run: ./gradlew build