Skip to content

Commit

Permalink
Can install twice
Browse files Browse the repository at this point in the history
  • Loading branch information
philderbeast committed May 23, 2024
1 parent 33585e1 commit b02d6af
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,21 @@ jobs:
- run: runhaskell Hello.hs
```
### Multiple GHC versions
If you need multiple versions of GHC installed at the same time, it is possible
to run the action twice.
```
- uses: haskell-actions/setup@v2
with:
ghc-version: "9.8.2"

- uses: haskell-actions/setup@v2
with:
ghc-version: "8.10.7"
```
### Model cabal workflow with caching
```yaml
Expand Down

0 comments on commit b02d6af

Please sign in to comment.