Skip to content

[#586] add epochNo and date to vote response #5

[#586] add epochNo and date to vote response

[#586] add epochNo and date to vote response #5

name: Backend Lint & Format Check
description: 'Check Haskell code in backend module'

Check failure on line 2 in .github/workflows/code_check_backend.yml

View workflow run for this annotation

GitHub Actions / Backend Lint & Format Check

Invalid workflow file

The workflow is not valid. .github/workflows/code_check_backend.yml (Line: 2, Col: 1): Unexpected value 'description'
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