Setup Knit in the CI to check content of `md` files

This commit is contained in:
Benoit Marty 2022-05-04 16:05:21 +02:00
parent 9e106990c8
commit d562ab35ad
1 changed files with 10 additions and 0 deletions

View File

@ -14,6 +14,16 @@ jobs:
- name: Run code quality check suite
run: ./tools/check/check_code_quality.sh
# Knit for all the modules (https://github.com/Kotlin/kotlinx-knit)
knit:
name: Knit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run knit
run: |
./gradlew knit
# ktlint for all the modules
ktlint:
name: Kotlin Linter