Actually make it compile

This commit is contained in:
2022-03-06 00:27:45 -06:00
parent 87fb5e2f99
commit 267c4ed5f6
6 changed files with 273 additions and 212 deletions

18
.github/workflows/gradle.yml vendored Normal file
View File

@ -0,0 +1,18 @@
name: Gradle
on: [ push ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
distribution: temurin
java-version: 17
cache: gradle
- name: Build with Gradle
run: chmod a+x gradlew && ./gradlew build --no-daemon