Skip to content

Commit

Permalink
unique ids
Browse files Browse the repository at this point in the history
  • Loading branch information
BebeSparkelSparkel committed Jul 11, 2024
1 parent 11b0f96 commit 8934d43
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
echo extraIncludeDirsFFI="--extra-include-dirs /Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk/usr/include/ffi" >> $GITHUB_ENV
- name: Setup Haskell macos
if: ${{ contains( matrix.os , 'macos' ) }}
id: setup-haskell-cabal
id: setup-haskell-stack-macos
uses: haskell-actions/[email protected]
with:
ghc-version: ${{ env.ghcVersion }}
Expand All @@ -49,7 +49,7 @@ jobs:
cabal-update: false
- name: Setup Haskell not macos
if: ${{ ! contains( matrix.os , 'macos' ) }}
id: setup-haskell-cabal
id: setup-haskell-stack-not-macos
uses: haskell-actions/[email protected]
with:
ghc-version: ${{ env.ghcVersion }}
Expand All @@ -61,7 +61,8 @@ jobs:
with:
key: ${{ matrix.os }}_${{ env.snapshot }}
path: |
${{ steps.setup-haskell-cabal.outputs.stack-root }}
${{ steps.setup-haskell-stack-macos.outputs.cabal-store }}
${{ steps.setup-haskell-stack-not-macos.outputs.cabal-store }}
.stack-work
*/.stack-work
- name: Build and run tests
Expand All @@ -85,11 +86,11 @@ jobs:
steps:
- name: Setup Haskell macos
if: ${{ contains( matrix.os , 'macos' ) }}
id: setup-haskell-cabal
id: setup-haskell-cabal-macos
uses: haskell-actions/[email protected]
- name: Setup Haskell not macos
if: ${{ ! contains( matrix.os , 'macos' ) }}
id: setup-haskell-cabal
id: setup-haskell-cabal-not-macos
uses: haskell-actions/[email protected]
- name: Clone project
uses: actions/checkout@v4
Expand All @@ -98,7 +99,8 @@ jobs:
with:
key: ${{ matrix.os }}_cabal
path: |
${{ steps.setup-haskell-cabal.outputs.cabal-store }}
${{ steps.setup-haskell-cabal-macos.outputs.cabal-store }}
${{ steps.setup-haskell-cabal-not-macos.outputs.cabal-store }}
dist-newstyle
- name: Build and run tests
shell: bash
Expand Down

0 comments on commit 8934d43

Please sign in to comment.