Add CI Configuration

This commit is contained in:
Josh Cummings
2024-10-07 12:24:10 -06:00
parent a9b676a925
commit e24b5b84db
2 changed files with 42 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
name: CI
on:
push:
pull_request:
schedule:
- cron: '0 10 * * *' # Once per day at 10am UTC
jobs:
build:
name: Build
runs-on: ubuntu-latest
# eventually add in matrix here
steps:
- uses: actions/checkout@v2
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
cache: 'gradle'
- name: Build with Gradle
run: ./gradlew check --continue