From e24b5b84dbc6734d42e267bfcb23e7d9e22093d0 Mon Sep 17 00:00:00 2001 From: Josh Cummings Date: Mon, 7 Oct 2024 12:24:10 -0600 Subject: [PATCH] Add CI Configuration --- .github/dependabot.yml | 19 +++++++++++++++ .../continuous-integraion-workflow.yml | 23 +++++++++++++++++++ 2 files changed, 42 insertions(+) create mode 100644 .github/dependabot.yml create mode 100644 .github/workflows/continuous-integraion-workflow.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..4661d19 --- /dev/null +++ b/.github/dependabot.yml @@ -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" ] diff --git a/.github/workflows/continuous-integraion-workflow.yml b/.github/workflows/continuous-integraion-workflow.yml new file mode 100644 index 0000000..62d7a07 --- /dev/null +++ b/.github/workflows/continuous-integraion-workflow.yml @@ -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