Use streaming decompress to identify extent of compressed data. #38
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: CI tests | |
on: [push, pull_request] | |
jobs: | |
linux: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
versions: | |
- ghc: '8.6.5' | |
cabal: '2.4' | |
- ghc: '8.8.1' | |
cabal: '3.0' | |
- ghc: '8.10.4' | |
cabal: '3.2' | |
- ghc: '9.0.1' | |
cabal: '3.4' | |
- ghc: '9.2.1' | |
cabal: '3.4' | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Install recent cabal/ghc | |
uses: haskell/actions/setup@v1 | |
with: | |
ghc-version: ${{ matrix.versions.ghc }} | |
cabal-version: ${{ matrix.versions.cabal }} | |
- name: Install dependencies | |
run: | | |
cabal v2-update | |
cabal v2-build --dependencies-only --enable-tests --enable-benchmarks --disable-optimization -fexecutable all | |
- name: Build and test | |
run: | | |
cabal v2-build --enable-tests --enable-benchmarks --disable-optimization -fexecutable all | |
cabal v2-test --disable-optimization all | |
macos: | |
runs-on: macOS-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Install stack | |
run: | | |
curl -L https://get.haskellstack.org/stable/osx-x86_64.tar.gz -o stack.tar.gz | |
tar xzvf stack.tar.gz --strip-components=1 'stack*/stack' | |
- name: Install dependencies | |
run: | | |
./stack update | |
./stack test --dependencies-only --fast | |
- name: Build and test | |
run: | | |
./stack install --fast --test --haddock --no-haddock-deps | |
windows: | |
runs-on: windows-2019 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: | | |
stack update | |
stack test --dependencies-only --fast | |
- name: Build and test | |
shell: cmd | |
run: | | |
stack test --fast --test-arguments="--hide-successes --ansi-tricks=false" | |