Add title for pages and use chevron when sensible in headings (#943) #2590
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: Linting | |
| on: | |
| pull_request: | |
| push: | |
| branches: ["main", "development"] | |
| jobs: | |
| fourmolu: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: haskell-actions/run-fourmolu@v11 | |
| with: | |
| version: "0.18.0.0" | |
| pattern: | | |
| src/**/*.hs | |
| test/**/*.hs | |
| app/**/*.hs | |
| hlint: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: 'Set up HLint' | |
| uses: haskell-actions/hlint-setup@v2 | |
| with: | |
| version: '3.10' | |
| - name: 'Run HLint' | |
| uses: haskell-actions/hlint-run@v2 | |
| with: | |
| path: '["src/", "test/", "app/"]' | |
| fail-on: warning |