diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e9b58f6..3533d4d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -57,5 +57,5 @@ jobs: uses: actions/upload-artifact@v4 with: path: '*/build/reports/tests' - name: test-reports + name: test-reports-${{ github.event.pull_request.number }}-${{ github.run_id }}-${{ matrix.os }}-jdk-${{ matrix.version }} retention-days: 7 \ No newline at end of file diff --git a/heo-core/src/test/java/dev/heowc/heo/core/loader/domain/ModuleLoaderVariousPathTest.java b/heo-core/src/test/java/dev/heowc/heo/core/loader/domain/ModuleLoaderVariousPathTest.java index 9129878..40cb034 100644 --- a/heo-core/src/test/java/dev/heowc/heo/core/loader/domain/ModuleLoaderVariousPathTest.java +++ b/heo-core/src/test/java/dev/heowc/heo/core/loader/domain/ModuleLoaderVariousPathTest.java @@ -21,7 +21,7 @@ void absolutePath() throws IOException { final List modules = new ModuleLoader(cycleIntergationTestProjectPath.toString(), "dev.heowc.heo.core").loadModules(); - assertThat(modules).hasSize(4); + assertThat(modules).isNotEmpty(); } @Test @@ -31,6 +31,6 @@ void relativePath() throws IOException { final List modules = new ModuleLoader(cycleIntergationTestProjectPath.toString(), "dev.heowc.heo.core").loadModules(); - assertThat(modules).hasSize(4); + assertThat(modules).isNotEmpty(); } } \ No newline at end of file