bumped up version to 0.1.0.3 #12
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |