Skip to content

Commit

Permalink
update gha
Browse files Browse the repository at this point in the history
  • Loading branch information
minimapletinytools committed Dec 29, 2023
1 parent 8f25ff2 commit 8298df8
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 3 deletions.
24 changes: 23 additions & 1 deletion .github/workflows/haskell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- uses: haskell-actions/setup@v2
with:
ghc-version: '9.2.5'
cabal-version: '3.2'
cabal-version: '3.10.2.0'

- name: Cache
uses: actions/cache@v3
Expand All @@ -41,3 +41,25 @@ jobs:
run: cabal build --enable-tests --enable-benchmarks all
- name: Run tests
run: cabal test all --enable-tests

parse-cabal-file:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- uses: haskell-actions/parse-cabal-file@v1
id: cabal_file
with:
cabal_file: my-library.cabal

- run: echo ${{ steps.cabal_file.outputs.version }}

hackage-upload-candidate:
runs-on: ubuntu-latest
steps:
- uses: haskell-actions/hackage-publish@v1
with:
hackageToken: ${{ secrets.HACKAGE_AUTH_TOKEN }}
packagesPath: ${{ runner.temp }}/packages
docsPath: ${{ runner.temp }}/docs
publish: false
4 changes: 2 additions & 2 deletions TODO.txt
Original file line number Diff line number Diff line change
Expand Up @@ -297,8 +297,8 @@ DONE-handlers should return preview action
-maybe highlight relevant files instead of * in file explorer
-or just don't show anything that's not relevant...
-UTs
-popupSaveBeforeExit
-popupOpenWindow
DONE-popupSaveBeforeExit
DONE-popupOpenWindow
-doubleClick
DONE-waitForSecondAfterFirst (move to reflex-potatoes)
DONE-add double click support to file explorer
Expand Down

0 comments on commit 8298df8

Please sign in to comment.