Skip to content

Rename function / Run tests on macos-latest #26

Rename function / Run tests on macos-latest

Rename function / Run tests on macos-latest #26

Workflow file for this run

---
name: build
on: push
concurrency:
group: build-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
strategy:
matrix:
os:
- macos-latest
- ubuntu-latest
test:
- plugin: cabal
command: cabal --version
- plugin: ghc
command: ghc --version
- plugin: hls
command: haskell-language-server-wrapper --version
- plugin: hls
version: 1.6.1.0
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:
command: ${{ matrix.test.command }}
plugin: ${{ matrix.test.plugin }}
version: ${{ matrix.test.version || 'latest' }}