Skip to content

Added CI/CD pipeline #1

Added CI/CD pipeline

Added CI/CD pipeline #1

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: install dependancies, build.
uses: haskell-actions/setup@v2
id: setup
run: |
cabal build all
- name: run tests
run: |
cabal test all