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

19
.github/dependabot.yml vendored Normal file
View File

@@ -0,0 +1,19 @@
version: 2
updates:
- package-ecosystem: "gradle"
target-branch: "main"
directory: "/"
schedule:
interval: "weekly"
time: "03:00"
timezone: "Etc/UTC"
allow:
- dependency-name: "org.springframework*"
dependency-type: "all"
- dependency-name: "io.spring*"
dependency-type: "all"
ignore:
- dependency-name: "*"
update-types: [ "version-update:semver-major", "version-update:semver-minor" ]

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