From 832951518959ced21bc7f632b6f842e0810eafd1 Mon Sep 17 00:00:00 2001 From: Sebastian Estrella <2049686+sestrella@users.noreply.github.com> Date: Wed, 3 Jul 2024 22:40:44 -0500 Subject: [PATCH] Update test cases --- .github/workflows/build.yml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f4c8220..b95b269 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 }}