Awesome
Setup Mint
This action sets up a Mint programming language.
Supported OS
<!-- prettier-ignore-start -->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.19.x) |
Prerequisites
None
Inputs
<!-- prettier-ignore-start -->Name | Required | Description | Default | Possible values |
---|---|---|---|---|
version | No | Mint version that can be found here | 0.20.0-alpha.3 | 0.19.0 , 0.18.0 , etc. |
Example usage
Workflow configuration
name: Setup Mint
on: push
jobs:
setup:
name: Setup
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: fabasoad/setup-mint-action@v1
- name: Run script
run: mint init test-project
Result
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!