aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorLorenz <ESs95s3P5z8Pheb>2022-07-07 00:31:50 +0200
committerLorenz <ESs95s3P5z8Pheb>2022-07-07 00:31:50 +0200
commit99773d6a593c444151503de315f127bea6f74d49 (patch)
tree9ee1ae505e5f82aba62f10c882af85a3acd6e483 /.github
downloadSkyHanni-99773d6a593c444151503de315f127bea6f74d49.tar.gz
SkyHanni-99773d6a593c444151503de315f127bea6f74d49.tar.bz2
SkyHanni-99773d6a593c444151503de315f127bea6f74d49.zip
init lorenz mod
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml61
1 files changed, 61 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
new file mode 100644
index 000000000..4d0c2f9da
--- /dev/null
+++ b/.github/workflows/build.yml
@@ -0,0 +1,61 @@
+name: Build
+
+on:
+ push:
+ branches:
+ - "*"
+ paths-ignore:
+ - ".gitignore"
+ pull_request:
+ branches:
+ - "*"
+ paths-ignore:
+ - ".gitignore"
+ workflow_dispatch:
+permissions: write-all
+jobs:
+ build:
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v2
+ - name: Set up JDK 1.8
+ uses: actions/setup-java@v1
+ with:
+ java-version: 1.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-
+ - name: Grant execute permission for gradlew
+ run: chmod +x gradlew
+ - name: Build with Gradle
+ run: ./gradlew build
+ - uses: actions/upload-artifact@v2
+ with:
+ path: build/libs/*.jar
+ - name: Stop gradle daemons
+ run: ./gradlew --stop
+
+ Check-Formating:
+ runs-on: ubuntu-latest
+ name: Check Formatting
+
+ steps:
+ - uses: actions/checkout@v2
+ - name: Set up JDK 1.8
+ uses: actions/setup-java@v1
+ with:
+ java-version: 1.8
+ - name: Prettify the Java Code
+ uses: lwerner-lshigh/prettier_action_java@v1.1.1
+ with:
+ prettier_options: "--write ."
+ branch: ${{ github.head_ref }}
+ dry: ${{ github.event_name != 'push' }}
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}