From 1d4eb13d243d21fc82ea1cda317c656150c78ca4 Mon Sep 17 00:00:00 2001 From: Wyvest <45589059+Wyvest@users.noreply.github.com> Date: Mon, 27 Dec 2021 11:47:51 +0700 Subject: Create gradle.yml --- .github/workflows/gradle.yml | 47 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 .github/workflows/gradle.yml diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml new file mode 100644 index 0000000..73c14c5 --- /dev/null +++ b/.github/workflows/gradle.yml @@ -0,0 +1,47 @@ +name: build + +on: + push: + branches: '*' + paths-ignore: + - 'README.md' + - 'LICENSE' + - '.gitignore' + pull_request: + branches: '*' + paths-ignore: + - 'README.md' + - 'LICENSE' + - '.gitignore' + workflow_dispatch: + +concurrency: + # Maximum of one running workflow per pull request source branch + # or branch and run number combination (cancels old run if action is rerun) + group: ${{ github.head_ref || format('{0}-{1}', github.ref, github.run_number) }} + cancel-in-progress: true + +jobs: + build: + name: "Build" + runs-on: "ubuntu-latest" + + steps: + - uses: actions/checkout@v2 + + - uses: gradle/wrapper-validation-action@v1 + + - uses: actions/setup-java@v2 + with: + distribution: "temurin" + java-version: "8" + + - uses: actions/cache@v2 + with: + path: | + ~/.gradle/caches + ~/.gradle/wrapper + key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} + restore-keys: | + ${{ runner.os }}-gradle- + - run: ./gradlew --no-daemon setupCiWorkspace build \ No newline at end of file -- cgit