setup-haskell
setup-haskell copied to clipboard
Set up your GitHub Actions workflow with a specific version of Haskell (GHC and Cabal)
Using the template exactly as it is given, ```yaml name: Haskell CI on: [push] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - uses: actions/setup-haskell@v1 with: ghc-version: '8.6.5' cabal-version: '3.0'...
Hey there, the action is not shown in the marketplace. it is in general hard to find in my opinion. **To check:** Go to Marketplace -> select Actions on the...