https://github.com/elct9620/setup-mruby
An action to compile mruby
https://github.com/elct9620/setup-mruby
mruby
Last synced: about 1 year ago
JSON representation
An action to compile mruby
- Host: GitHub
- URL: https://github.com/elct9620/setup-mruby
- Owner: elct9620
- License: mit
- Created: 2023-06-08T13:14:15.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2025-03-13T02:43:17.000Z (about 1 year ago)
- Last Synced: 2025-03-13T03:27:40.752Z (about 1 year ago)
- Topics: mruby
- Language: TypeScript
- Homepage:
- Size: 4 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
# Setup mruby Action
[](https://github.com/elct9620/setup-mruby/actions/workflows/test.yml)
This action use ruby-build to install mruby and adds it to the PATH.
## Usage
```
name: My workflow
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: elct9620/setup-mruby@main
with:
mruby-version: '3.2.0' # Not needed with a .ruby-version file
- run: mrbc app.rb
```