Skip to content

fabasoad/setup-whitespace-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Repository files navigation

Setup Whitespace

Stand With Ukraine GitHub release functional-tests security linting

This action sets up a wspace - Whitespace programming language interpreter.

Supported OS

OS
Windows
Linux
macOS

Prerequisites

None.

Inputs

- 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

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