wasm-calc5
#34
Workflow file for this run
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: WASM calculator - build | |
on: | |
push: | |
branches: | |
- trunk | |
pull_request: | |
branches: | |
- trunk | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
- name: Cache cabal global package db | |
id: cabal-global | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cabal | |
key: ${{ runner.os }}-2-wasm-calc-cabal-global-${{ matrix.plan.ghc }}-${{ hashFiles('**.freeze') }} | |
restore-keys: | | |
${{ runner.os }}-2-wasm-calc-cabal-global-${{ matrix.plan.ghc }} | |
- name: Cache .cabal-work | |
uses: actions/cache@v3 | |
with: | |
path: dist-newstyle | |
key: ${{ runner.os }}-2-wasm-calc-cabal-work-${{ matrix.plan.ghc }}-${{ hashFiles('**.freeze') }} | |
restore-keys: | | |
${{ runner.os }}-2-wasm-calc-cabal-work-${{ matrix.plan.ghc }} | |
- uses: haskell/actions/setup@v2 | |
with: | |
ghc-version: '9.6.3' | |
cabal-version: '3.10.1.0' | |
- name: Build the universe | |
run: make build | |
- name: Test wasm-calc | |
run: make test-wasm-calc | |
- name: Test wasm-calc2 | |
run: make test-wasm-calc2 | |
- name: Test wasm-calc3 | |
run: make test-wasm-calc3 | |
- name: Test wasm-calc4 | |
run: make test-wasm-calc4 | |
- name: Test wasm-calc5 | |
run: make test-wasm-calc5 | |