Files
setup-haskell/action.yml

25 lines
861 B
YAML
Raw Normal View History

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'
author: 'GitHub'
inputs:
ghc-version:
required: false
2019-09-30 11:43:06 -07:00
description: 'Exact version of ghc to use.'
default: '8.8.3'
2019-09-30 11:43:06 -07:00
cabal-version:
required: false
2019-09-30 11:43:06 -07:00
description: 'Exact version of cabal to use.'
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'
runs:
using: 'node12'
main: 'dist/index.js'