add sortPLinesByReferenceSafe, and sortPLinesWithoutReference. #1170
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
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: "actions/checkout@v3" | ||
- id: setup-haskell-cabal | ||
uses: "haskell-actions/setup@v2" | ||
with: | ||
cabal-version: "${{ matrix.cabal }}" | ||
enable-stack: false | ||
ghc-version: "${{ matrix.ghc }}" | ||
- name: Update Hackage repository | ||
run: cabal update | ||
- name: cabal.project.local.ci | ||
run: | | ||
if [ -e cabal.project.local.ci ]; then | ||
cp cabal.project.local.ci cabal.project.local | ||
fi | ||
- name: freeze | ||
run: cabal freeze | ||
- uses: "actions/cache@v2" | ||
with: | ||
key: "${{ runner.os }}-${{ matrix.ghc }}-cabal-${{ hashFiles('cabal.project.freeze') }}" | ||
path: "${{ steps.setup-haskell-cabal.outputs.cabal-store }} dist-newstyle" | ||
- name: Install dependencies | ||
run: cabal build all --enable-tests --enable-benchmarks --only-dependencies | ||
- name: build all | ||
run: cabal build all --enable-tests --enable-benchmarks | ||
- name: test all | ||
run: cabal test test-hslice --enable-tests | ||
- name: haddock all | ||
run: cabal haddock all | ||
strategy: | ||
matrix: | ||
cabal: | ||
- '3.10' | ||
ghc: | ||
- '9.4.6' | ||
- '9.2.8' | ||
- '9.0.2' | ||
- '8.10.7' | ||
- '8.8.4' | ||
concurrency: | ||
group ci-${{ github.ref }} | ||
cancel-in-progress: ${{ github.event_name == 'pull_request' }} | ||
name: Haskell CI | ||
on: | ||
- push | ||
- pull_request |