Update dependency io.mockk:mockk to v1.13.13 (#913) #298
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build & publish docs | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
# Ensure Java installation to run Gradle | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: "temurin" | |
java-version: 17 | |
- name: 'Setup Gradle' | |
uses: gradle/actions/setup-gradle@v4 | |
- name: 'Build API pages' | |
run: | | |
./gradlew dokkaHtmlMultiModule \ | |
-Dorg.gradle.internal.repository.max.tentatives=5 \ | |
-Dorg.gradle.internal.repository.initial.backoff=10000 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.x' | |
cache: 'pip' | |
cache-dependency-path: './docs/mkdocs-material-plugins.txt' | |
- name: 'Install mkdocs-material and plugins' | |
run: | | |
python -m pip install mkdocs-material | |
python -m pip install -r ./docs/mkdocs-material-plugins.txt | |
- name: 'Build & deploy docs' | |
run: mkdocs gh-deploy --force |