Skip to content

Add flm specification #23

Add flm specification

Add flm specification #23

Workflow file for this run

name: Main
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
test:
strategy:
matrix:
image:
- macos-26
- ubuntu-26.04
- windows-2025
fail-fast: false
runs-on: ${{ matrix.image }}
steps:
- uses: actions/checkout@v4
- name: Set up Haskell
uses: haskell-actions/setup@v2
with:
stack-version: '3.11.1'
enable-stack: true
- name: Build
run: stack build
- name: Test
run: stack test
timeout-minutes: 10