mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2025-01-09 18:12:52 +08:00
49 lines
1.3 KiB
YAML
49 lines
1.3 KiB
YAML
name: "Lint and Build"
|
|
on:
|
|
workflow_dispatch: ~
|
|
push:
|
|
paths:
|
|
- "**.java"
|
|
branches:
|
|
- "development"
|
|
jobs:
|
|
Build-Server-Jar:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
- name: Setup Python
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: '3.10'
|
|
- name: Run Linter
|
|
run: python format_whitespace.py
|
|
- 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: Run Gradle
|
|
run: ./gradlew && ./gradlew jar
|
|
- name: Upload build
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: Grasscutter
|
|
path: grasscutter-*.jar
|
|
- name: Commit any Linter changes
|
|
uses: EndBug/add-and-commit@v9
|
|
with:
|
|
add: '-u'
|
|
default_author: github_actions
|
|
message: 'Fix whitespace'
|