Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fabasoad/setup-brainfuck-action
This GitHub action installs brainfuck compiler.
https://github.com/fabasoad/setup-brainfuck-action
brainfuck brainfuck-interpreter esoteric-interpreter esoteric-language github-action github-actions
Last synced: 25 days ago
JSON representation
This GitHub action installs brainfuck compiler.
- Host: GitHub
- URL: https://github.com/fabasoad/setup-brainfuck-action
- Owner: fabasoad
- License: mit
- Created: 2020-03-19T13:29:50.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2024-04-21T12:20:47.000Z (9 months ago)
- Last Synced: 2024-12-10T19:19:36.107Z (about 1 month ago)
- Topics: brainfuck, brainfuck-interpreter, esoteric-interpreter, esoteric-language, github-action, github-actions
- Size: 6.19 MB
- Stars: 2
- Watchers: 2
- 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
- awesome-actions - Setup Brainfuck - Setup brainfuck interpreter. (Community Resources / Build)
- fucking-awesome-actions - Setup Brainfuck - Setup brainfuck interpreter. (Community Resources / Build)
- awesome-workflows - Setup Brainfuck - Setup brainfuck interpreter. (Community Resources / Build)
README
# Setup Brainfuck
[![Stand With Ukraine](https://raw.githubusercontent.com/vshymanskyy/StandWithUkraine/main/badges/StandWithUkraine.svg)](https://stand-with-ukraine.pp.ua)
![Releases](https://img.shields.io/github/v/release/fabasoad/setup-brainfuck-action?include_prereleases)
![functional-tests](https://github.com/fabasoad/setup-brainfuck-action/actions/workflows/functional-tests.yml/badge.svg)
![linting](https://github.com/fabasoad/setup-brainfuck-action/actions/workflows/linting.yml/badge.svg)This action installs one of the brainfuck interpreters called [brainfucky](https://pypi.org/project/brainfucky/).
## Prerequisites
The following tools have to be installed for successful work of this GitHub action:
[pip3](https://pip.pypa.io/en/stable/).## Inputs
| Name | Required | Description | Default | Possible values |
|---------|----------|---------------------------------------------------------------------------------------------------|------------|------------------------|
| version | No | Brainfucky library version that can be found [here](https://pypi.org/project/brainfucky/) version | `0.1.dev1` | `0.1.dev1`, `0.1.dev0` |## Example usage
### Workflow configuration
```yaml
name: Teston: push
jobs:
build:
name: Brainfuck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
- uses: fabasoad/setup-brainfuck-action@main
- name: Hello World
run: |
touch ./hello-world.bf
echo "++++++++[>++++[>++>+++>+++>+<<<<-]>+>+>->>+[<]<-]>>.>---.+++++++..+++.>>.<-.<.++" > ./hello-world.bf
echo "+.------.--------.>>+.>++." >> ./hello-world.bf
brainfucky --file ./hello-world.bf
rm ./hello-world.bf
```### Result
```text
executing file ./hello-world.bf
Hello World!
```