Skip to content

Commit

Permalink
feat: support relative path
Browse files Browse the repository at this point in the history
  • Loading branch information
heowc committed Jun 10, 2024
1 parent ba314a9 commit df57016
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ void absolutePath() throws IOException {
final List<Module> modules = new ModuleLoader(cycleIntergationTestProjectPath.toString(),
"dev.heowc.heo.core").loadModules();

assertThat(modules).hasSize(4);
assertThat(modules).isNotEmpty();
}

@Test
Expand All @@ -31,6 +31,6 @@ void relativePath() throws IOException {
final List<Module> modules = new ModuleLoader(cycleIntergationTestProjectPath.toString(),
"dev.heowc.heo.core").loadModules();

assertThat(modules).hasSize(4);
assertThat(modules).isNotEmpty();
}
}

0 comments on commit df57016

Please sign in to comment.