Skip to content

Split smol-modules #338

Split smol-modules

Split smol-modules #338

Workflow file for this run

name: Smol - build
on:
push:
branches:
- trunk
pull_request:
branches:
- trunk
jobs:
build:
example_matrix:

Check failure on line 14 in .github/workflows/smol-haskell.yml

View workflow run for this annotation

GitHub Actions / Smol - build

Invalid workflow file

The workflow is not valid. .github/workflows/smol-haskell.yml (Line: 14, Col: 5): Unexpected value 'example_matrix'
strategy:
matrix:
command:
- "make test-smol"
- "make test-smol-backend"
- "make test-smol-wasm"
- "make test-smol-modules"
- "make build-smol-repl"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- name: Install LLVM and Clang
uses: KyleMayes/install-llvm-action@v1
with:
version: "14.0"
- name: Cache Cabal build artifacts
uses: actions/cache@v3
with:
path: |
${{ steps.setup-haskell-build-env.outputs.cabal-store }}
dist-newstyle
key: ${{ runner.os }}-cabal-9.6.3-${{ hashFiles('cabal.project.freeze') }}
restore-keys: |
${{ runner.os }}-cabal-9.6.3
- uses: haskell-actions/setup@v2
with:
ghc-version: '9.6.3'
cabal-version: '3.10.1.0'
- name: Test!
run: ${{ matrix.command }}