This action installs one of the brainfuck interpreters called brainfucky.
The following tools have to be installed for successful work of this GitHub action: pip3.
Name | Required | Description | Default | Possible values |
---|---|---|---|---|
version | No | Brainfucky library version that can be found here version | 0.1.dev1 |
0.1.dev1 , 0.1.dev0 |
name: Test
on: 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
executing file ./hello-world.bf
Hello World!