diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e0e4735..661911f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,16 +14,19 @@ jobs: os: # - macos-latest - ubuntu-latest - plugin: - - cabal - - ghc - - hls - - stack + test: + - plugin: cabal + command: cabal --version + - plugin: ghc + command: ghc --version + - plugin: hls + command: haskell-language-server-wrapper --version + - plugin: stack + command: stack --version fail-fast: true runs-on: ${{ matrix.os }} steps: - uses: asdf-vm/actions/plugin-test@v3 with: - plugin: ${{ matrix.plugin }} - command: ${{ matrix.plugin }} --version - gitref: non_interactive_ghcup_installation + plugin: ${{ matrix.test.plugin }} + command: ${{ matrix.test.command }}