Skip to content

Commit

Permalink
Add Dependabot and CI configuration
Browse files Browse the repository at this point in the history
Signed-off-by: Patryk Miś <[email protected]>
  • Loading branch information
PatrykMis committed Jul 28, 2023
1 parent 9f8c69f commit 1402f16
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 37 deletions.
12 changes: 12 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
target-branch: "master"
- package-ecosystem: "gradle"
directory: "/"
schedule:
interval: "daily"
target-branch: "master"
18 changes: 18 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Build application

on: [pull_request, push]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 17
cache: gradle
- name: Build with Gradle
run: ./gradlew build --no-daemon
37 changes: 0 additions & 37 deletions .github/workflows/release.yml

This file was deleted.

11 changes: 11 additions & 0 deletions .github/workflows/validate-gradle-wrapper.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: Validate Gradle Wrapper

on: [pull_request, push]

jobs:
validation:
name: Validation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: gradle/wrapper-validation-action@v1

0 comments on commit 1402f16

Please sign in to comment.