Skip to content

Update actions/checkout digest to 11bd719 #377

Update actions/checkout digest to 11bd719

Update actions/checkout digest to 11bd719 #377

Workflow file for this run

name: Smol - build
on:
push:
branches:
- trunk
pull_request:
branches:
- trunk
jobs:
build:
strategy:
matrix:
command:
- test-smol
- test-smol-backend
- test-smol-interpreter
- test-smol-modules
- test-smol-wasm
- test-smol-typechecker
- build-smol-repl
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4
- name: Install LLVM and Clang
uses: KyleMayes/install-llvm-action@v1
with:
version: "14.0"
- uses: haskell-actions/setup@v2
id: setup-haskell-build-env
with:
ghc-version: '9.6.3'
cabal-version: '3.10.1.0'
- name: Cache Cabal build artifacts
uses: actions/cache@v3
with:
path: |
~/.cabal/store
dist-newstyle
key: ${{ runner.os }}-cabal-9.6.3-${{ hashFiles('cabal.project.freeze') }}
restore-keys: |
${{ runner.os }}-cabal-9.6.3
- name: Test!
run: "make ${{ matrix.command }}"