We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20390d3 commit 16153ccCopy full SHA for 16153cc
.github/workflows/test.yml
@@ -0,0 +1,22 @@
1
+# This workflow will build a Java project with Gradle
2
+# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
3
+
4
+name: Java CI with Gradle for Test
5
6
+on: [push, pull_request]
7
8
+jobs:
9
+ build:
10
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - uses: actions/checkout@v2
15
+ - name: Set up JDK 1.8
16
+ uses: actions/setup-java@v1
17
+ with:
18
+ java-version: 1.8
19
+ - name: Grant execute permission for gradlew
20
+ run: chmod +x gradlew
21
+ - name: Running Test Cases
22
+ run: ./gradlew imagekit-sdk:test
0 commit comments