Skip to content
You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
terminal

GitHub Action

Setup Umka

v1.4.0

Setup Umka

terminal

Setup Umka

This action sets up Umka scripting language interpreter

Installation

Copy and paste the following snippet into your .yml file.

              

- name: Setup Umka

uses: fabasoad/setup-umka-action@v1.4.0

Learn more about this action in fabasoad/setup-umka-action

Choose a version

Setup Umka

GitHub release Functional Tests pre-commit.ci status

This action sets up a Umka.

Inputs

Name Required Description Default Possible values
version No Umka version that can be found here 0.9 0.5.3, 0.8 etc.

Example usage

Let's try to run hello-world.um file with the following content:

fn main() {
    printf("Hello World!")
}

Workflow configuration

name: Setup Umka

on: push

jobs:
  setup:
    name: Setup
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@main
      - uses: fabasoad/setup-umka-action@main
      - name: Run script
        run: umka ./hello-world.um

Result

Run umka ./hello-world.um
Hello World!