> ## Documentation Index
> Fetch the complete documentation index at: https://learn.workflow.dog/llms.txt
> Use this file to discover all available pages before exploring further.

# Ceil

> Round a number upward to the nearest integer.

The **Ceil** action returns the smallest integer greater than or equal to the
input.

## Inputs

| Input      | Type   | Required | Description         |
| ---------- | ------ | -------- | ------------------- |
| **Number** | Number | Yes      | The value to round. |

## Outputs

| Output     | Type   | Description                                 |
| ---------- | ------ | ------------------------------------------- |
| **Ceiled** | Number | The input rounded toward positive infinity. |

For example, `4.01` becomes `5`, while `-4.99` becomes `-4`.
