Initial commit

This commit is contained in:
TheTrouper
2024-04-17 19:00:29 -05:00
committed by GitHub
commit 6341bb6e63
19 changed files with 639 additions and 0 deletions

19
.github/workflows/pull_request.yml vendored Normal file
View File

@@ -0,0 +1,19 @@
name: Build Pull Request
on: pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v2
with:
java-version: 17
distribution: adopt
- name: Build
run: ./gradlew build
- name: Upload artifacts
uses: actions/upload-artifact@v2.2.4
with:
name: build-artifacts
path: build/libs