Skip to content

Fixed CI pipeline

Fixed CI pipeline #14

Workflow file for this run

name: Haskell CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-22.04
defaults:
run:
shell: bash
steps:
- name: Copy repo into actions
uses: actions/checkout@v3
- name: Install ollama
run: make install-ollama
- name: Setup cabal
uses: haskell-actions/setup@v2
with:
cabal-version: '3.10.3.0'
ghc-version: '9.6.6'
id: setup
- name: install dependancies, build and test stack project.
uses: freckle/stack-action@v5
with:
stack-build-arguments: --ghc-options="-fno-warn-unused-imports -fno-warn-unused-matches -fno-warn-type-defaults -fno-warn-missing-export-lists"
stack-build-arguments-test: --ghc-options="-fno-warn-unused-imports -fno-warn-unused-matches -fno-warn-type-defaults -fno-warn-missing-export-lists"