Skip to content

Commit 5650de5

Browse files
committed
Fix docs
1 parent 90d6706 commit 5650de5

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/ci.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,10 @@ jobs:
5252
working-directory: ./integration-test
5353
run: ./gradlew check
5454

55+
- name: Generate docs
56+
run: |
57+
./gradlew :dokkaGenerate
58+
5559
- name: Get version
5660
id: get-version
5761
run: echo "version=$(cat version.txt)" >> "$GITHUB_OUTPUT"

test-support/Module.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ It requires the use of the `dev.rnett.kcp-development.compiler-plugin.testing` G
1414
Like when using the base test framework, you create a test generator in `src/testFixtures` and put the test data in `src/testData`.
1515
Unlike the base framework, you don't create a `main` method, instead, you create a class with a no-arg constructor that extends `BaseTestGenerator`.
1616
Set the Gradle `compilerPluginDevelopment.testGenerator` property to the FQN of this class in your build script.
17-
[Auto-generation](#autogeneration) is also available and is used by default.
17+
Auto-generation (see below) is also available and is used by default.
1818

1919
Even if you don't extend `BaseTestGenerator`, you can set `compilerPluginDevelopment.testGenerator` to your main class and `compilerPluginDevelopment.useTestGenerator` to false.
2020
You can still use the utilities in this module, just not the test generation DSL.

0 commit comments

Comments
 (0)