Skip to content

Commit

Permalink
Update test cases
Browse files Browse the repository at this point in the history
  • Loading branch information
sestrella committed Jul 4, 2024
1 parent d0be5a8 commit 8329515
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,19 +23,26 @@ jobs:
- ubuntu-latest
test:
- plugin: cabal
version: latest
command: cabal --version
- plugin: ghc
version: latest
command: ghc --version
- plugin: hls
version: 1.6.1.0
command: haskell-language-server-wrapper --version
- plugin: hls
version: 1.6.1.0
version: latest
command: haskell-language-server-wrapper --version
- plugin: stack
version: latest
command: stack --version
fail-fast: true
runs-on: ${{ matrix.os }}
needs: [check]
steps:
- uses: asdf-vm/actions/plugin-test@v3
with:
command: ${{ matrix.test.command || format('{0} --version', matrix.test.plugin) }}
plugin: ${{ matrix.test.plugin }}
version: ${{ matrix.test.version || 'latest' }}
version: ${{ matrix.test.version }}
command: ${{ matrix.test.command }}

0 comments on commit 8329515

Please sign in to comment.