https://github.com/fabasoad/setup-mint-action
This action installs Mint (programming language for writing single page applications).
https://github.com/fabasoad/setup-mint-action
cli github-action github-actions mint programming-language setup-mint
Last synced: 29 days ago
JSON representation
This action installs Mint (programming language for writing single page applications).
- Host: GitHub
- URL: https://github.com/fabasoad/setup-mint-action
- Owner: fabasoad
- License: mit
- Created: 2020-03-27T08:57:58.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2025-03-11T22:03:28.000Z (about 1 month ago)
- Last Synced: 2025-03-11T23:19:13.753Z (about 1 month ago)
- Topics: cli, github-action, github-actions, mint, programming-language, setup-mint
- Language: Shell
- Homepage:
- Size: 2.04 MB
- Stars: 13
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
- awesome-mint - Github action - Github action to test and build Mint projects (CI/CD / Editor extensions)
- awesome-actions - Setup Mint - Setup Mint (programming language for writing single page applications). (Community Resources / Frontend Tools)
- fucking-awesome-actions - Setup Mint - Setup Mint (programming language for writing single page applications). (Community Resources / Frontend Tools)
- awesome-workflows - Setup Mint - Setup Mint (programming language for writing single page applications). (Community Resources / Frontend Tools)
README
# Setup Mint
[](https://stand-with-ukraine.pp.ua)



This action sets up a [Mint](https://www.mint-lang.com/) programming language.
## Supported OS
| OS | Arch | |
|---------|--------|----------------------------------|
| Windows | All | :x: |
| Linux | x86_84 | :white_check_mark: |
| Linux | arm | :x: |
| macOS | x86_84 | :white_check_mark: |
| macOS | arm | :white_check_mark: `(>= 0.20.0)` |## Prerequisites
None.
## Inputs
```yaml
- uses: fabasoad/setup-mint-action@v1
with:
# (Optional) Mint version. Defaults to the latest version.
version: "0.21.0"
# (Optional) If "false" skips installation if mint is already installed. If
# "true" installs mint in any case. Defaults to "false".
force: "false"
# (Optional) GitHub token that is used to send requests to GitHub API such
# as downloading asset. Defaults to the token provided by GitHub Actions
# environment.
github-token: "${{ github.token }}"
```## Outputs
| Name | Description | Example |
|-----------|-----------------------------------|---------|
| installed | Whether mint was installed or not | `true` |## Example usage
### Workflow configuration
```yaml
name: Setup Minton: push
jobs:
setup:
name: Setup
runs-on: ubuntu-latest
steps:
- uses: fabasoad/setup-mint-action@v1
- name: Run script
run: mint init test-project
```### Result
```text
Mint - Initializing a new project
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
⚙ Creating directory: test-project
⚙ Writing initial files:
➔ assets/head.html
➔ source/Main.mint
➔ tests/Main.mint
➔ mint.json
➔ .gitignore
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
All done in 292μs!
```