Skip to content

Commit

Permalink
Remove debug
Browse files Browse the repository at this point in the history
  • Loading branch information
kmicklas committed Jun 9, 2024
1 parent 26c3c11 commit 9234e66
Showing 1 changed file with 1 addition and 13 deletions.
14 changes: 1 addition & 13 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,6 @@ jobs:
name: GHC ${{ matrix.ghc }}
runs-on: ubuntu-latest
steps:
- name: Debug
run: |
ls /usr/lib/postgresql
ls /usr/lib/postgresql/*/bin
export PATH=$PATH:/usr/lib/postgresql/$(ls /usr/lib/postgresql | head -n 1)/bin
echo path: $PATH
# echo explicit
# /usr/lib/postgresql/*/bin/initdb --help
# echo with path
# PATH=$PATH:/usr/lib/postgresql/*/bin initdb --help
# echo by path: $PATH
initdb --help
- uses: actions/checkout@v4
- uses: haskell-actions/setup@v2
with:
Expand All @@ -34,7 +22,7 @@ jobs:
run: cabal build all --enable-tests
- name: Test
run: |
export PATH=$PATH:/usr/lib/postgresql/*/bin
export PATH=$PATH:/usr/lib/postgresql/$(ls /usr/lib/postgresql | head -n 1)/bin
cabal test all --enable-tests
- name: Build documentation
run: cabal haddock all

0 comments on commit 9234e66

Please sign in to comment.