Skip to content

Latest commit

 

History

History
69 lines (51 loc) · 1.96 KB

README.md

File metadata and controls

69 lines (51 loc) · 1.96 KB

Setup Umka

Stand With Ukraine GitHub release functional-tests security linting

This action sets up Umka.

Supported OS

OS
Windows
Linux
macOS

Prerequisites

The following tools have to be available on a runner prior using this GitHub action:

  • unzip

Inputs

Name Required Description Default Possible values
version No Umka version that can be found here 1.5 1.4, 1.4.1, 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!