Add unstable and unstable-quests to the build.yml action & Add a Spotless format action

This commit is contained in:
KingRainbow44 2023-05-05 18:51:45 -04:00
parent f0a11c1b4e
commit d18b4ffdd4
No known key found for this signature in database
GPG Key ID: FC2CB64B00D257BE
2 changed files with 50 additions and 0 deletions

View File

@ -7,6 +7,8 @@ on:
branches:
- "stable"
- "development"
- "unstable"
- "unstable-quests"
pull_request:
paths:
- "**.java"

48
.github/workflows/check_code.yml vendored Normal file
View File

@ -0,0 +1,48 @@
name: "Lint & Format Code"
on:
workflow_dispatch: ~
push:
paths:
- "src/main/**.java"
- "**.json"
branches:
- "unstable"
- "unstable-quests"
jobs:
Format-Code:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Java
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: '17'
- name: Cache gradle files
uses: actions/cache@v2
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
./.gradle/loom-cache
key: ${{ runner.os }}-gradle-${{ hashFiles('*.gradle', 'gradle.properties', '**/*.accesswidener') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Format Code
run: ./gradlew && ./gradlew spotlessApply
- run: git config --global user.name "github-actions"
- run: git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
- run: git stash
- run: git checkout development
- run: git stash pop || true
- name: Commit Code Changes
run: git add -u && git commit -m 'Format code [skip actions]' || true
- name: Push Code Changes
run: git push --set-upstream --force origin development