You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
GitHub Action
Setup Brainfuck
v1.0.7
This action installs one of the brainfuck interpreters called brainfucky.
Name | Required | Description | Default | Possible values |
---|---|---|---|---|
version | No | Brainfucky library version. Default is the latest version | latest | <String> |
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!