Skip to content

Commit

Permalink
Update GitHub actions (#195)
Browse files Browse the repository at this point in the history
* update coroutines to 1.4.2 (#192)

* update Kotlin to 1.4.20 (#191)

* update Kotlin to 1.4.20

* replace kotlin android extensions with kotlin-parcelize

* update version to 1.0.0-beta07

* add action for mkdocs and update test jdk to 14
  • Loading branch information
RBusarow committed Nov 28, 2020
1 parent 4e09ee8 commit c739609
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:

steps:
- uses: actions/checkout@v1
- name: Set up JDK 1.8
- name: Set up JDK
uses: actions/setup-java@v1
with:
java-version: 1.8
java-version: 14
- name: all tests
run: ./gradlew test
- name: detekt
Expand Down
27 changes: 27 additions & 0 deletions .github/workflows/mkdocs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: mkdocs
on:
push:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.x
- run: pip install mkdocs-material
- name: Set up JDK
uses: actions/setup-java@v1
with:
java-version: 14
- name: build
run: ./gradlew assemble
- name: dokka
run: ./gradlew dokkaHtml
- name: knit
run: ./gradlew knit
- name: build docs
run: ./gradlew buildDocs
- run: mkdocs gh-deploy --force

0 comments on commit c739609

Please sign in to comment.