dhall-lang / setup-dhall

Github action to install a specific version of https://dhall-lang.org and run commands
BSD 3-Clause "New" or "Revised" License
15 stars 7 forks source link

Also download dhall-yaml #3

Closed gregziegan closed 3 years ago

gregziegan commented 3 years ago

Perhaps we should add some config to specify what you need? In my case, i'd like to use the yaml-to-dhall tool.

Potential config example:

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - uses: dhall-lang/setup-dhall@v4
        with:
          download-core: true
          download-json: false
          download-yaml: true
      - run: dhall version

^ download core and json would default to true, yaml to false