Skip to content

Commit 5e545cd

Browse files
authored
feat: use custom gradle URL (#62)
1 parent 682e7c8 commit 5e545cd

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ jobs:
2727
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
2828
restore-keys: |
2929
${{ runner.os }}-gradle-
30+
- name: Configure Gradle
31+
uses: ./.github/actions/configure-gradle
3032
- name: Build and Test ${{ env.PACKAGE_NAME }}
3133
run: |
3234
./gradlew build
@@ -44,6 +46,8 @@ jobs:
4446
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
4547
restore-keys: |
4648
${{ runner.os }}-gradle-
49+
- name: Configure Gradle
50+
uses: ./.github/actions/configure-gradle
4751
- name: Build and Test ${{ env.PACKAGE_NAME }}
4852
run: |
4953
./gradlew build
@@ -53,6 +57,8 @@ jobs:
5357
steps:
5458
- name: Checkout sources
5559
uses: actions/checkout@v2
60+
- name: Configure Gradle
61+
uses: ./.github/actions/configure-gradle
5662
- name: Build and Test ${{ env.PACKAGE_NAME }}
5763
run: |
5864
./gradlew build

.github/workflows/lint.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ jobs:
1818
steps:
1919
- name: Checkout sources
2020
uses: actions/checkout@v2
21+
- name: Run ls
22+
run: ls & pwd
23+
- name: Configure Gradle
24+
uses: ./.github/actions/configure-gradle
2125
- name: Lint ${{ env.PACKAGE_NAME }}
2226
run: |
2327
./gradlew ktlint

0 commit comments

Comments
 (0)