Update dependency io.mockk:mockk to v1.13.8 (#767) #165
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 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- uses: actions/cache@v3 | |
with: | |
key: ${{ github.ref }} | |
path: .cache | |
- 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 API pages' | |
uses: gradle/gradle-build-action@v2 | |
with: | |
arguments: | | |
dokkaHtmlMultiModule | |
-Dorg.gradle.internal.repository.max.tentatives=5 | |
-Dorg.gradle.internal.repository.initial.backoff=10000 | |
- name: 'Build & deploy docs' | |
run: mkdocs gh-deploy --force |