Initial commit

This commit is contained in:
tibs 2022-01-04 12:23:14 -05:00
commit 5bd7750177
Signed by untrusted user who does not match committer: tibs
GPG key ID: 047833989F50F88F
24 changed files with 1627 additions and 0 deletions

24
.github/workflows/gradle.yml vendored Normal file
View file

@ -0,0 +1,24 @@
name: gradle-ci
on: [ push, pull_request ]
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
- name: Build with Gradle
run: ./gradlew build
- name: Upload build artifacts
uses: actions/upload-artifact@v2
with:
name: build-artifacts
path: ./build/libs