diff --git a/.github/workflows/haskell.yml b/.github/workflows/haskell.yml index 4501cf3..4b48fe6 100644 --- a/.github/workflows/haskell.yml +++ b/.github/workflows/haskell.yml @@ -44,6 +44,8 @@ jobs: os: ubuntu-22.04 liburing: "system" + timeout-minutes: 30 + steps: - name: Checkout repository uses: actions/checkout@v3 @@ -122,5 +124,9 @@ jobs: - name: Build run: cabal build all + - name: Set test timeout + run: | + echo "TASTY_TIMEOUT=5m" >> "$GITHUB_ENV" + - name: Run tests run: cabal test -j1 --test-show-details=direct all