https://github.com/fabasoad/pascal-action
This action runs Pascal file and saves output.
https://github.com/fabasoad/pascal-action
github-action github-actions pascal pascal-compiler
Last synced: 29 days ago
JSON representation
This action runs Pascal file and saves output.
- Host: GitHub
- URL: https://github.com/fabasoad/pascal-action
- Owner: fabasoad
- License: mit
- Created: 2020-03-20T13:14:55.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2025-03-11T22:03:18.000Z (about 1 month ago)
- Last Synced: 2025-03-11T23:19:10.779Z (about 1 month ago)
- Topics: github-action, github-actions, pascal, pascal-compiler
- Language: Pascal
- Homepage:
- Size: 79.1 KB
- Stars: 7
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
- awesome-actions - Run Pascal Script
- fucking-awesome-actions - Run Pascal Script
- awesome-workflows - Run Pascal Script
README
# Run Pascal script action
[](https://stand-with-ukraine.pp.ua)



This action runs Pascal script.
## Prerequisites
None.
## Inputs
```yaml
- uses: fabasoad/pascal-action@v1
with:
# (Required) Path to the script file.
path: ./HelloWorld.pas
```## Outputs
| Name | Required | Description |
|--------|----------|---------------------------|
| result | Yes | Result of script running. |## Example usage
### Workflow configuration
```yaml
name: Pascalon: push
jobs:
pascal:
name: Run Pascal script
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
- uses: fabasoad/pascal-action@main
id: pascal
with:
path: "./HelloWorld.pas"
- name: Print result
run: echo "${{ steps.pascal.outputs.result }}"
```### Result
```shell
Run echo "Hello World!"
Hello World!
```