diff options
author | Xander <xandersmith2008@gmail.com> | 2022-08-30 16:53:16 +0100 |
---|---|---|
committer | Xander <xandersmith2008@gmail.com> | 2022-08-30 16:53:16 +0100 |
commit | d643a44c866504a642f9de0055417a82585d96e5 (patch) | |
tree | 199113aaa8b3dfb3c4c3191991c1501673e8da10 /.github | |
download | YetAnotherConfigLib-d643a44c866504a642f9de0055417a82585d96e5.tar.gz YetAnotherConfigLib-d643a44c866504a642f9de0055417a82585d96e5.tar.bz2 YetAnotherConfigLib-d643a44c866504a642f9de0055417a82585d96e5.zip |
Initial commit
Diffstat (limited to '.github')
-rw-r--r-- | .github/FUNDING.yml | 1 | ||||
-rw-r--r-- | .github/workflows/gradle.yml | 50 |
2 files changed, 51 insertions, 0 deletions
diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..e6c1fe0 --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1 @@ +ko_fi: isxander diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml new file mode 100644 index 0000000..b05f565 --- /dev/null +++ b/.github/workflows/gradle.yml @@ -0,0 +1,50 @@ +name: Gradle CI + +on: + push: + branches: + - '*' + paths-ignore: + - 'README.md' + - 'LICENSE' + - '.gitignore' + - '.editorconfig' + - 'changelogs/**' + pull_request: + branches: + - '*' + paths-ignore: + - 'README.md' + - 'LICENSE' + - '.gitignore' + - '.editorconfig' + - 'changelogs/**' + workflow_dispatch: +jobs: + build: + runs-on: ubuntu-latest + name: Build with gradle + + steps: + - uses: actions/checkout@v3 + - name: Set up JDK + uses: actions/setup-java@v3 + with: + java-version: 17 + distribution: temurin + - uses: actions/cache@v3 + with: + path: | + ~/.gradle/caches + ~/.gradle/wrapper + ./.gradle/loom-cache + 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 --no-daemon + - uses: actions/upload-artifact@v3 + with: + path: build/libs/*.jar |