Skip to content

Commit

Permalink
CI script to install with GHC 9.2 and cabal 3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanperez-keera committed May 19, 2024
1 parent 37cdc66 commit ffc1eb9
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions .github/workflows/hackage-ghc-9.2-cabal-3.6.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: install-hackage-ghc-9.2-cabal-3.6

# Trigger the workflow on push or pull request
on:
- pull_request
- push

jobs:
cabal:
name: ${{ matrix.os }} / ghc ${{ matrix.ghc }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
cabal: ["3.6"]
ghc:
- "9.2"

steps:

- uses: haskell-actions/setup@main
id: setup-haskell-cabal
name: Setup Haskell
with:
ghc-version: ${{ matrix.ghc }}
cabal-version: ${{ matrix.cabal }}

- name: Prepare environment
run: |
echo "$HOME/.ghcup/bin" >> $GITHUB_PATH
echo "$HOME/.cabal/bin" >> $GITHUB_PATH
- name: Install dependencies
run: |
cabal install alex:alex
cabal install happy:happy
cabal install BNFC:bnfc
bnfc --version
alex --version
happy --version
- name: Install ogma
run: |
cabal install ogma-cli
- name: Run ogma to check that it is working
run: |
ogma --help

0 comments on commit ffc1eb9

Please sign in to comment.