We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35f73a8 commit f9feb6cCopy full SHA for f9feb6c
2 files changed
.github/dependabot.yml
@@ -0,0 +1,7 @@
1
+version: 2
2
+updates:
3
+ # Set update schedule for GitHub Actions
4
+ - package-ecosystem: "github-actions"
5
+ directory: "/"
6
+ schedule:
7
+ interval: "weekly"
.github/workflows/build-test.yml
@@ -0,0 +1,25 @@
+name: Build Test
+
+on:
+ push:
+ branches: [ main ]
+ pull_request:
8
9
+jobs:
10
+ tests:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v4
14
15
+ - name: Set up JDK
16
+ uses: actions/setup-java@v4
17
+ with:
18
+ distribution: temurin
19
+ java-version: 11
20
21
+ - name: Setup Gradle
22
+ uses: gradle/actions/setup-gradle@v4
23
24
+ - name: Build
25
+ run: ./gradlew build
0 commit comments