Skip to content

Add withProcess

Add withProcess #175

Workflow file for this run

---
name: Codestyle
on:
- push
- pull_request
jobs:
ormolu:
name: Lint code layout using Ormolu
runs-on: ubuntu-20.04
steps:
- name: checkout
uses: actions/[email protected]
- name: ormolu
uses: mrkkrp/ormolu-action@v14
with:
pattern: |
**/*.hs
**/*.hs-boot
!troupe/troupe-distributed-process/Control/Distributed/Process/Internal/*.hs
cabal-fmt:
name: Lint Cabal project description using cabal-fmt
runs-on: ubuntu-20.04
steps:
- name: Cache Cabal files
uses: actions/[email protected]
with:
path: |
~/.cabal/packages
~/.cabal/store
key: ${{ runner.os }}-cabal
- name: Install cabal-fmt
run: |
cabal update
cabal install --allow-newer=base "cabal-fmt-0.1.6"
- name: checkout
uses: actions/[email protected]
- name: Check formatting of Cabal project description
run: |
cabal-fmt --Werror --check troupe/troupe.cabal