Change SRcd
to contain a list of tuples instead of a Map
#1625
Workflow file for this run
This file contains hidden or 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: HLint | |
on: | |
push: | |
paths: | |
- '**.hs' | |
branches: | |
- main | |
pull_request: | |
paths: | |
- '**.hs' | |
branches: | |
- main | |
jobs: | |
hlint: | |
name: HLint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: 'Set up HLint' | |
uses: haskell-actions/hlint-setup@v2 | |
with: | |
version: '3.8' | |
- name: 'Run HLint' | |
uses: haskell-actions/hlint-run@v2 | |
with: | |
path: '["src/", "app/", "test/"]' | |
fail-on: suggestion |