An open API service indexing awesome lists of open source software.

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

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'
```