reflex-dom: 0.6.3.2 release #343
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: github-action | |
on: [push, pull_request] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
ghc: ['8.6', '8.8', '8.10', '9.0', '9.2', '9.4', '9.6', '9.8', '9.10'] | |
os: ['ubuntu-latest'] | |
runs-on: ${{ matrix.os }} | |
name: GHC ${{ matrix.ghc }} on ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: haskell-actions/setup@v2 | |
with: | |
ghc-version: ${{ matrix.ghc }} | |
- name: Cache | |
uses: actions/cache@v3 | |
env: | |
cache-name: cache-cabal | |
with: | |
path: ~/.cabal | |
key: ${{ runner.os }}-${{ matrix.ghc }}-build-${{ env.cache-name }}-${{ hashFiles('**/*.cabal') }}-${{ hashFiles('**/cabal.project') }} | |
restore-keys: | | |
${{ runner.os }}-${{ matrix.ghc }}-build-${{ env.cache-name }}- | |
${{ runner.os }}-${{ matrix.ghc }}-build- | |
${{ runner.os }}-${{ matrix.ghc }}- | |
${{ runner.os }} | |
- name: Set up cabal project file to avoid webkit2gtk | |
run: cp cabal.project-nogtk cabal.project | |
- name: Install dependencies | |
run: | | |
cabal update | |
cabal build --only-dependencies --enable-tests --enable-benchmarks all | |
- name: Build | |
run: cabal build --enable-tests --enable-benchmarks all | |
# Temporarily disabled until either a newer hlint is released or chrome-test-utils is released on hackage | |
# - name: Run tests | |
# run: cabal test all |