https://github.com/elct9620/setup-mruby
An action to compile mruby
https://github.com/elct9620/setup-mruby
mruby
Last synced: 2 months 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 (about 3 years ago)
- Default Branch: main
- Last Pushed: 2026-04-02T05:54:58.000Z (2 months ago)
- Last Synced: 2026-04-02T19:15:48.773Z (2 months ago)
- Topics: mruby
- Language: JavaScript
- Homepage:
- Size: 5.21 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
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
```