Skip to content

Commit

Permalink
Fix?
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick Seagull committed Mar 9, 2025
1 parent 8df715e commit 2808b51
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ on:
branches:
- main

# defaults:
# run:
# shell: nix-shell --run "bash -e {0}"
defaults:
run:
shell: nix-shell --run "bash -e {0}"

jobs:
tests:
Expand All @@ -34,13 +34,13 @@ jobs:

- name: Update Cabal Hackage list
# if: steps.cache.outputs.cache-hit != 'true'
run: cabal --enable-nix update
run: cabal update

- name: Build the project
run: cabal --enable-nix build all
run: cabal build all

- name: Run core tests
run: cabal --enable-nix test core
run: cabal test core

- name: Run CLI tests
run: cabal --enable-nix test cli
run: cabal test cli

0 comments on commit 2808b51

Please sign in to comment.