https://github.com/fabasoad/setup-umka-action
This GitHub action installs Umka programming language.
https://github.com/fabasoad/setup-umka-action
cli github-action github-actions interpreter programming-language scripting-language umka
Last synced: 3 months ago
JSON representation
This GitHub action installs Umka programming language.
- Host: GitHub
- URL: https://github.com/fabasoad/setup-umka-action
- Owner: fabasoad
- License: mit
- Created: 2020-11-18T12:17:59.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2025-03-12T22:03:24.000Z (3 months ago)
- Last Synced: 2025-03-12T23:18:56.854Z (3 months ago)
- Topics: cli, github-action, github-actions, interpreter, programming-language, scripting-language, umka
- Language: Shell
- Homepage:
- Size: 757 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Setup Umka
[](https://stand-with-ukraine.pp.ua)



This action sets up [Umka](https://github.com/vtereshkov/umka-lang).
## Supported OS
| OS | |
|---------|--------------------|
| Windows | :white_check_mark: |
| Linux | :white_check_mark: |
| macOS | :x: |## Prerequisites
None.
## Inputs
```yaml
- uses: fabasoad/setup-umka-action@v1
with:
# (Optional) Umka version. Defaults to the latest version.
version: "1.5.1"
# (Optional) If "false" skips installation if umka is already installed. If
# "true" installs umka in any case. Defaults to "false".
force: "false"
# (Optional) GitHub token that is used to send requests to GitHub API such
# as downloading asset. Defaults to the token provided by GitHub Actions
# environment.
github-token: "${{ github.token }}"
```## Outputs
| Name | Description | Example |
|-----------|-----------------------------------|---------|
| installed | Whether umka was installed or not | `true` |## Example usage
Let's try to run `hello-world.um` file with the following content:
```rust
fn main() {
printf("Hello World!")
}
```### Workflow configuration
```yaml
name: Setup Umkaon: push
jobs:
setup:
name: Setup
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: fabasoad/setup-umka-action@v1
- name: Run script
run: umka ./hello-world.um
```### Result
```text
Run umka ./hello-world.um
Hello World!
```## Contributions
