Refactor search code and fix folder repeat search. #268
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
| on: [push] | |
| name: build | |
| jobs: | |
| cabal: | |
| strategy: | |
| matrix: | |
| system: ['ubuntu-latest'] | |
| ghc: ['9.2.1', '9.12', 'latest'] | |
| include: | |
| - system: ubuntu-22.04 | |
| ghc: latest | |
| - system: ubuntu-26.04 | |
| ghc: latest | |
| name: GHC ${{ matrix.ghc }} on ${{ matrix.system }} | |
| runs-on: ${{ matrix.system }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: haskell-actions/setup@v2 | |
| with: | |
| ghc-version: ${{ matrix.ghc }} | |
| - run: cabal build all | |
| - run: cabal test all --test-show-details=streaming | |
| stack: | |
| runs-on: 'ubuntu-latest' | |
| name: Stack | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: haskell-actions/setup@v2 | |
| with: | |
| enable-stack: true | |
| - run: stack test | |