Skip to content

Commit bfb5862

Browse files
committed
Update style check github action
1 parent 82db334 commit bfb5862

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/style.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
2121
restore-keys: |
2222
${{ runner.os }}-gradle-
23-
- name: build-logic Code Style Check with Gradle and Spotless
24-
run: ./gradlew :build-logic:clean :build-logic:spotlessCheck
23+
- name: build-logic-ncj Code Style Check with Gradle and Spotless
24+
run: ./gradlew :build-logic-ncj:clean :build-logic-ncj:spotlessCheck
2525
- name: netCDF-Java Code Style Check with Gradle and Spotless
2626
run: ./gradlew clean spotlessCheck

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
JDK8: /usr/thredds-test-environment/${{ matrix.java-vendor }}8
2323
- name: Prep for artifact upload
2424
if: failure()
25-
run: rm -rf build-logic/build/tmp
25+
run: rm -rf build-logic-ncj/build/tmp
2626
- uses: actions/upload-artifact@v4
2727
if: failure()
2828
with:

docs/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ val buildJavadocAll =
100100
title = "NetCDF-Java All API v${version}"
101101
destinationDir = layout.buildDirectory.dir("javadocAll").get().asFile
102102
// list of public artifacts managed by
103-
// build-logic/src/main/kotlin/ncj-base-conventions.gradle.kts
103+
// build-logic-ncj/src/main/kotlin/ncj-base-conventions.gradle.kts
104104
val publicArtifacts = project.extra.get("public.artifacts")
105105
if (publicArtifacts is List<*>) {
106106
publicArtifacts.forEach {

netcdf-java-bom/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ extra["project.title"] = "netCDF-Java BOM"
1212
dependencies {
1313
constraints {
1414
// list of public artifacts managed by
15-
// build-logic/src/main/kotlin/ncj-base-conventions.gradle.kts
15+
// build-logic-ncj/src/main/kotlin/ncj-base-conventions.gradle.kts
1616
val publicArtifacts = project.extra.get("public.artifacts")
1717
if (publicArtifacts is List<*>) {
1818
publicArtifacts.forEach { api(project(it.toString())) }

0 commit comments

Comments
 (0)