Skip to content

Commit

Permalink
Add verification workflow and Dependabot
Browse files Browse the repository at this point in the history
  • Loading branch information
erichaagdev committed Jun 28, 2024
1 parent 53a44d3 commit 4c96449
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
version: 2
registries:
gradle-plugin-portal:
type: maven-repository
url: https://plugins.gradle.org/m2
username: dummy # Required by dependabot
password: dummy # Required by dependabot
updates:
- package-ecosystem: gradle
directory: /
registries:
- gradle-plugin-portal
schedule:
interval: daily
time: "08:00"
- package-ecosystem: github-actions
directory: /
schedule:
interval: daily
time: "08:00"
27 changes: 27 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Build

on:
push:
branches:
- main
pull_request:
workflow_dispatch:

jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 21
- name: Set up Gradle
uses: gradle/actions/setup-gradle@v3
with:
validate-wrappers: true
- name: Build
run: ./gradlew build

0 comments on commit 4c96449

Please sign in to comment.