Skip to content

Commit cdf8b2d

Browse files
committed
Update Gradle tasks to use 'lib' instead of 'cert4android'
1 parent 89997ca commit cdf8b2d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/build-kdoc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- uses: gradle/actions/setup-gradle@v3
2424

2525
- name: Build KDoc
26-
run: ./gradlew --no-daemon --no-configuration-cache cert4android:dokkaHtml
26+
run: ./gradlew --no-daemon --no-configuration-cache lib:dokkaHtml
2727

2828
- name: Publish KDoc
2929
if: success()

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
# uses: github/codeql-action/autobuild@v2
5454

5555
- name: Build
56-
run: ./gradlew --no-daemon cert4android:assemble
56+
run: ./gradlew --no-daemon lib:assemble
5757

5858
- name: Perform CodeQL Analysis
5959
uses: github/codeql-action/analyze@v3

.github/workflows/test-dev.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- uses: gradle/actions/setup-gradle@v3
1919

2020
- name: Check
21-
run: ./gradlew cert4android:check
21+
run: ./gradlew lib:check
2222

2323
test_on_emulator:
2424
name: Tests with emulator
@@ -45,4 +45,4 @@ jobs:
4545
key: avd-${{ hashFiles('lib/build.gradle.kts') }} # gradle-managed devices are defined there
4646

4747
- name: Run device tests
48-
run: ./gradlew --no-daemon virtualCheck
48+
run: ./gradlew --no-daemon lib:virtualCheck

0 commit comments

Comments
 (0)