Skip to content

Commit

Permalink
fix github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
sunny-chung committed Apr 8, 2024
1 parent 41fdf62 commit eedf1f7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/deploy-website.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,7 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '21'
- run: apk add openjdk21
- run: ./gradlew :kotlite-apidoc:generateStdlibApiDoc :kotlite-demo:assemble
- run: cd doc && asciidoctor -r asciidoctor-diagram -D "/wd/doc/output" /wd/doc/usermanual/index.adoc
- run: cp -R usermanual/img output/img
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ _A lite embedded Kotlin interpreter_
![macOS](https://img.shields.io/badge/macOS-blue)
![watchOS](https://img.shields.io/badge/watchOS-blue)
![tvOS](https://img.shields.io/badge/tvOS-blue)
![Verification Test Status](https://github.com/sunny-chung/kotlite/actions/workflows/run-test.yaml/badge.svg?branch=main)

**Kotlite** is an open-sourced type-safe programming language that has a rich subset of the [Kotlin](https://kotlinlang.org/) script language. It comes with standard libraries, which are a subset of Kotlin Multiplatform/Common standard libraries and a few third-party libraries.

Expand Down Expand Up @@ -55,6 +56,8 @@ val symbolTable = interpreter.symbolTable()
val a = (symbolTable.findPropertyByDeclaredName("a") as LongValue).value // 4181L
```

The interpreter is well tested.

![Well tested](./doc/usermanual/img/tests.png)

## Demo
Expand Down

0 comments on commit eedf1f7

Please sign in to comment.