This action sets up a Mint programming language.
| OS | Arch | |
|---|---|---|
| Windows | All | ❌ |
| Linux | x86_84 | ✅ |
| Linux | arm | ❌ |
| macOS | x86_84 | ✅ |
| macOS | arm | ✅ (>= 0.20.0) |
None.
- uses: fabasoad/setup-mint-action@v1with: # (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 }}"| Name | Description | Example |
|---|---|---|
| installed | Whether mint was installed or not | true |
name: Setup Minton: pushjobs: setup: name: Setupruns-on: ubuntu-lateststeps: - uses: fabasoad/setup-mint-action@v1 - name: Run scriptrun: mint init test-projectMint - 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!