Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hustcer/setup-moonbit
A Github Action to setup a MoonBit environment for you.
https://github.com/hustcer/setup-moonbit
Last synced: about 1 month ago
JSON representation
A Github Action to setup a MoonBit environment for you.
- Host: GitHub
- URL: https://github.com/hustcer/setup-moonbit
- Owner: hustcer
- License: mit
- Created: 2023-11-01T15:04:55.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-05T09:56:49.000Z (about 2 months ago)
- Last Synced: 2024-11-05T10:39:32.634Z (about 2 months ago)
- Language: Nushell
- Homepage:
- Size: 57.6 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- awesome-nu - setup-moonbit Action
README
# Setup MoonBit Action
[中文说明](README.zh-CN.md)
[![Setup-Moonbit@Dev](https://github.com/hustcer/setup-moonbit/actions/workflows/basic.yml/badge.svg)](https://github.com/hustcer/setup-moonbit/actions/workflows/basic.yml)
[![Daily Checking](https://github.com/hustcer/setup-moonbit/actions/workflows/daily.yml/badge.svg)](https://github.com/hustcer/setup-moonbit/actions/workflows/daily.yml)This GitHub Action will setup a [MoonBit](https://www.moonbitlang.com/) environment for you. It should work on Github `macOS` , `Ubuntu` , and `Windows` runners.
## Usage
### Basic
It's quite simple to use `hustcer/setup-moonbit` , just follow the example below:
```yaml
steps:
- name: Checkout
uses: actions/checkout@v4- name: Setup Moonbit
uses: hustcer/setup-moonbit@v1- name: Check Moonbit Version
run: |
moon version --all
```Or, check the [test.yaml](https://github.com/hustcer/setup-moonbit/blob/main/.github/workflows/test.yml) example.
In rare circumstances you might get rate limiting errors, if this happens you can set the `GITHUB_TOKEN` environment variable.
```yaml
- uses: hustcer/setup-moonbit@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
```### Inputs
| Name | Required | Description | Type | Default |
| ------------ | -------- | ------------ | ------ | --------- |
| `version` | no | A valid moonbit tool chain version, such as `0.1.20241104+8ce5d2967`, `nightly`, `latest`, etc. or even `bleeding` | string | `latest`|
| `setup-core` | no | `true` to download and bundle Moonbit Core, `false` to ignore it | bool | `true` |## License
Licensed under:
* MIT license ([LICENSE](LICENSE) or http://opensource.org/licenses/MIT)