https://github.com/diku-dk/install-mlkit
Action for installing MLKit
https://github.com/diku-dk/install-mlkit
mlkit sml
Last synced: 6 months ago
JSON representation
Action for installing MLKit
- Host: GitHub
- URL: https://github.com/diku-dk/install-mlkit
- Owner: diku-dk
- Created: 2023-04-14T05:14:43.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-09-11T20:05:42.000Z (about 2 years ago)
- Last Synced: 2025-04-13T00:53:14.258Z (6 months ago)
- Topics: mlkit, sml
- Language: Standard ML
- Homepage:
- Size: 3.91 KB
- Stars: 6
- Watchers: 7
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Install MLKit
This action installs MLKit in a Linux-based GitHub Actions runner.
The compiler is installed in `$HOME/.local`, which means it will be on
the `$PATH` of a standard setup.## Inputs
`version`
The full version to install as a string (e.g. `'4.7.3'`), or the
string `'latest'`.## Example usages
```
- uses: diku-dk/install-mlkit@v1
with:
version: '4.7.3'
``````
- uses: diku-dk/install-mlkit@v1
``````
- uses: diku-dk/install-mlkit@v1
with:
version: 'latest'
```