We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 728ef44 commit 850fc60Copy full SHA for 850fc60
.github/workflows/gradle.yml
@@ -0,0 +1,30 @@
1
+name: DWH Dumper CI
2
+
3
+on:
4
+ push:
5
+ branches: [ "main" ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
+ name: test
12
+ runs-on: ubuntu-latest
13
+ permissions:
14
+ contents: read
15
16
+ steps:
17
+ - uses: actions/checkout@v4
18
+ - name: Set up JDK 8
19
+ uses: actions/setup-java@v4
20
+ with:
21
+ java-version: '8'
22
+ distribution: 'temurin'
23
24
+ # Configure Gradle for optimal use in GitHub Actions, including caching of downloaded dependencies.
25
+ # See: https://github.com/gradle/actions/blob/main/setup-gradle/README.md
26
+ - name: Setup Gradle
27
+ uses: gradle/actions/setup-gradle@af1da67850ed9a4cedd57bfd976089dd991e2582 # v4.0.0
28
29
+ - name: Test
30
+ run: ./gradlew -Pci :dumper:app:test
0 commit comments