Skip to content

Merge commit '7ea0b605fccd18d0f2e1eea20d9a6cfa44361102' as 'govtool/a… #70

Merge commit '7ea0b605fccd18d0f2e1eea20d9a6cfa44361102' as 'govtool/a…

Merge commit '7ea0b605fccd18d0f2e1eea20d9a6cfa44361102' as 'govtool/a… #70

name: Backend Lint & Format Check
on:
workflow_dispatch:
push:
paths:
- govtool/backend/**
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Use Haskell
uses: haskell-actions/setup@v2
with:
ghc-version: '9.2.7'
cabal-version: '3.6.0.0'
- name: Use Python
uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: Install Pre-commit
run: pip install pre-commit
- name: Install HLint
run: |
cabal update
cabal install hlint
- name: Checkout code
uses: actions/checkout@v4
- name: Run hlint
run: pre-commit run --all-files hlint
check-format:
runs-on: ubuntu-latest
steps:
- name: Use Haskell
uses: haskell-actions/setup@v2
with:
ghc-version: '9.2.7'
cabal-version: '3.6.0.0'
- name: Use Python
uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: Install Pre-commit
run: pip install pre-commit
- name: Install HLint
run: |
cabal update
cabal install stylish-haskell
- name: Checkout code
uses: actions/checkout@v4
- name: Run hlint
run: pre-commit run --all-files stylish-haskell