Bump ws from 8.13.0 to 8.17.1 in /jsaddle-warp/node-client #40
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
# modified from https://github.com/jgm/pandoc/blob/master/.github/workflows/ci.yml | |
name: Cabal | |
on: | |
push: | |
branches: | |
- '**' | |
paths-ignore: [] | |
pull_request: | |
paths-ignore: [] | |
jobs: | |
linux: | |
runs-on: ubuntu-20.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
versions: | |
- ghc: '8.10.7' | |
cabal: '3.4' | |
steps: | |
- uses: actions/checkout@v2 | |
# need to install older cabal/ghc versions from ppa repository | |
- name: Install recent cabal/ghc | |
uses: haskell/actions/setup@v1 | |
with: | |
ghc-version: ${{ matrix.versions.ghc }} | |
cabal-version: ${{ matrix.versions.cabal }} | |
# declare/restore cached things | |
# caching doesn't work for scheduled runs yet | |
# https://github.com/actions/cache/issues/63 | |
- name: Cache cabal global package db | |
id: cabal-global | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/.cabal | |
key: ${{ runner.os }}-${{ matrix.versions.ghc }}-${{ matrix.versions.cabal }}-cabal-global-${{ hashFiles('cabal.project') }} | |
- name: Cache cabal work | |
id: cabal-local | |
uses: actions/cache@v2 | |
with: | |
path: | | |
dist-newstyle | |
key: ${{ runner.os }}-${{ matrix.versions.ghc }}-${{ matrix.versions.cabal }}-cabal-local | |
- name: Install dependencies | |
run: | | |
sudo apt update | |
sudo apt install libwebkit2gtk-4.0-dev libgirepository1.0-dev | |
cabal update | |
cabal build all --dependencies-only --enable-tests --disable-optimization | |
- name: Build | |
run: | | |
cabal build all --enable-tests --disable-optimization 2>&1 | tee build.log | |
- name: Test | |
run: | | |
cabal test all --disable-optimization |