Skip to content

jlkdevelop/setup-mx

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

setup-mx

GitHub Action that installs the MX Script (mx) CLI on a runner.

Created by Jassim Alkharafi. MIT-licensed.

Usage

- uses: jlkdevelop/setup-mx@v1
- run: mx test

Pin a specific version:

- uses: jlkdevelop/setup-mx@v1
  with:
    version: v0.14.0

version accepts latest (default), v0.14.0, or 0.14.0.

Supported runners

OS x64 arm64
ubuntu-*
macos-*
windows-*

The action downloads the matching prebuilt binary from the mxscript releases page and adds it to $PATH.

Outputs

Name Description
version The mx version that was installed.

Example: full CI workflow

name: CI
on: [push, pull_request]

jobs:
  test:
    runs-on: ${{ matrix.os }}
    strategy:
      matrix:
        os: [ubuntu-latest, macos-latest, windows-latest]
    steps:
      - uses: actions/checkout@v4
      - uses: jlkdevelop/setup-mx@v1
      - run: mx test

License

MIT © Jassim Alkharafi

About

GitHub Action to install the MX Script (mx) CLI on Linux/macOS/Windows runners.

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors