https://github.com/fabasoad/setup-malbolge-action
This GitHub action installs malbolge interpreter
https://github.com/fabasoad/setup-malbolge-action
esolang esoteric-language esoteric-programming-language github-action github-actions malbolge malbolge-interpreter
Last synced: 14 days ago
JSON representation
This GitHub action installs malbolge interpreter
- Host: GitHub
- URL: https://github.com/fabasoad/setup-malbolge-action
- Owner: fabasoad
- License: mit
- Created: 2022-11-28T14:52:35.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-03-23T22:03:11.000Z (about 1 month ago)
- Last Synced: 2025-04-10T01:06:01.455Z (14 days ago)
- Topics: esolang, esoteric-language, esoteric-programming-language, github-action, github-actions, malbolge, malbolge-interpreter
- Language: C
- Homepage:
- Size: 48.8 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Setup malbolge action
[](https://stand-with-ukraine.pp.ua)



This action installs [malbolge](https://en.wikipedia.org/wiki/Malbolge) interpreter.
## Supported OS
| OS | |
|---------|--------------------|
| Windows | :white_check_mark: |
| Linux | :white_check_mark: |
| macOS | :x: |## Prerequisites
The following tools have to be installed for successful work of this GitHub action:
[gcc](https://gcc.gnu.org).## Inputs
```yaml
- uses: fabasoad/setup-malbolge-action@v0
with:
# (Optional) If "false" skips installation if malbolge is already installed.
# If "true" installs malbolge in any case. Defaults to "false".
force: "false"
```## Outputs
| Name | Description | Example |
|-----------|---------------------------------------|---------|
| installed | Whether malbolge was installed or not | `true` |## Example usage
### Input
This program should print "Hello, world":
```text
(=<`#9]~6ZY327Uv4-QsqpMn&+Ij"'E%e{Ab~w=_:]Kw%o44Uqp0/Q?xNvL:`H%c#DD2^WV>gY;dts76qKJImZkj
```### Workflow configuration
```yaml
name: Teston: push
jobs:
example:
name: malbolge
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: fabasoad/setup-malbolge-action@v0
- name: Run script
run: malbolge hello-world.mal
```### Result
```text
Run malbolge hello-world.mal
Hello, world.
```