2019-11-08 17:02:36 +00:00
|
|
|
name: 'Setup Haskell'
|
|
|
|
|
description: 'Set up a specific version of GHC and Cabal and add the command-line tools to the PATH'
|
2019-09-23 19:56:26 -07:00
|
|
|
author: 'GitHub'
|
|
|
|
|
inputs:
|
|
|
|
|
ghc-version:
|
2020-03-23 11:18:29 -07:00
|
|
|
required: false
|
2019-09-30 11:43:06 -07:00
|
|
|
description: 'Exact version of ghc to use.'
|
2020-03-23 11:18:29 -07:00
|
|
|
default: '8.8.3'
|
2019-09-30 11:43:06 -07:00
|
|
|
cabal-version:
|
2020-03-23 11:18:29 -07:00
|
|
|
required: false
|
2019-09-30 11:43:06 -07:00
|
|
|
description: 'Exact version of cabal to use.'
|
2020-03-23 11:18:29 -07:00
|
|
|
default: '3.0.0.0'
|
|
|
|
|
stack-version:
|
|
|
|
|
required: false
|
|
|
|
|
description: 'If specified, will download the given version of stack. If set to "latest", it will always get the latest stable version of stack.'
|
|
|
|
|
stack-no-global:
|
|
|
|
|
required: false
|
|
|
|
|
description: 'If specified, stack-version must be set. Prevents installing GHC and Cabal globally'
|
|
|
|
|
stack-setup-ghc:
|
|
|
|
|
required: false
|
|
|
|
|
description: 'If specified, will run stack setup to install the specified GHC'
|
2019-09-23 19:56:26 -07:00
|
|
|
runs:
|
|
|
|
|
using: 'node12'
|
2020-03-23 11:18:29 -07:00
|
|
|
main: 'dist/index.js'
|