Skip to content

Commit f67d3c0

Browse files
committed
Update haskell github action
1 parent 5c00c2f commit f67d3c0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/haskell.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
- name: Install dependencies
1717
run: |
1818
cabal update
19-
cabal install --only-dependencies
19+
cabal new-build --only-dependencies
2020
- name: Build
2121
run: |
22-
cabal configure --enable-tests
23-
cabal build
22+
cabal new-configure --enable-tests
23+
cabal new-build
2424
- name: Run tests
25-
run: cabal test
25+
run: cabal new-test

0 commit comments

Comments
 (0)