aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorWyvest <45589059+Wyvest@users.noreply.github.com>2021-12-27 11:47:51 +0700
committerWyvest <45589059+Wyvest@users.noreply.github.com>2021-12-27 11:47:51 +0700
commit1d4eb13d243d21fc82ea1cda317c656150c78ca4 (patch)
tree45a4a4ac4fd1c52dd2a33a3947dcfb726cd11f57 /.github
parentb4db7af1bf1019a187c1b5f71bd2bc4a37afcf46 (diff)
downloadChatting-1d4eb13d243d21fc82ea1cda317c656150c78ca4.tar.gz
Chatting-1d4eb13d243d21fc82ea1cda317c656150c78ca4.tar.bz2
Chatting-1d4eb13d243d21fc82ea1cda317c656150c78ca4.zip
Create gradle.yml
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/gradle.yml47
1 files changed, 47 insertions, 0 deletions
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