An open API service indexing awesome lists of open source software.

https://github.com/fabasoad/setup-whitespace-action

This GitHub action installs Whitespace programming language interpreter
https://github.com/fabasoad/setup-whitespace-action

esoteric-programming-language github-action github-actions whitespace whitespace-interpreter whitespace-language

Last synced: 2 months ago
JSON representation

This GitHub action installs Whitespace programming language interpreter

Awesome Lists containing this project

README

          

# Setup Whitespace

[![Stand With Ukraine](https://raw.githubusercontent.com/vshymanskyy/StandWithUkraine/main/badges/StandWithUkraine.svg)](https://stand-with-ukraine.pp.ua)
![GitHub release](https://img.shields.io/github/v/release/fabasoad/setup-whitespace-action?include_prereleases)
![functional-tests](https://github.com/fabasoad/setup-whitespace-action/actions/workflows/functional-tests.yml/badge.svg)
![security](https://github.com/fabasoad/setup-whitespace-action/actions/workflows/security.yml/badge.svg)
![linting](https://github.com/fabasoad/setup-whitespace-action/actions/workflows/linting.yml/badge.svg)

This action sets up a `wspace` - [Whitespace](https://web.archive.org/web/20150618184706/http://compsoc.dur.ac.uk/whitespace/tutorial.php)
programming language [interpreter](https://github.com/Romejanic/Whitespace).

## Supported OS

| OS | |
|---------|--------------------|
| Windows | :white_check_mark: |
| Linux | :white_check_mark: |
| macOS | :white_check_mark: |

## Prerequisites

None.

## Inputs

```yaml
- uses: fabasoad/setup-whitespace-action@v1
with:
# (Optional) If "true" it installs wspace even if it is already installed on
# a runner. Otherwise, skips installation. Defaults to false.
force: "false"
# (Optional) GitHub token that is used to send requests to GitHub API.
# Defaults to the token provided by GitHub Actions environment.
github-token: "${{ github.token }}"
```

## Outputs

| Name | Description | Example |
|-----------|-------------------------------------|---------|
| installed | Whether wspace was installed or not | `true` |

## Example usage

```yaml
name: Setup Whitespace

on: push

jobs:
setup:
name: Setup
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: fabasoad/setup-whitespace-action@v1
- name: Run script
run: wspace hello-world.ws
```

## Contributions

![Alt](https://repobeats.axiom.co/api/embed/de85087d6bfdec06350fc6803fee9c1b435a0b11.svg "Repobeats analytics image")