Skip to content

Commit

Permalink
build dokka docs in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
finn-block committed Sep 11, 2024
1 parent 94801eb commit 0ca1461
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -395,3 +395,22 @@ jobs:
with:
name: rust-test-results
path: test-results/rust-test-results.xml

kotlin-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
distribution: "adopt"
java-version: "11"
# Cache Maven repo
- uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- run: mvn dokka:dokka
working-directory: bound/kt

0 comments on commit 0ca1461

Please sign in to comment.