diff options
-rw-r--r-- | .forgejo/workflows/test.yml | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/.forgejo/workflows/test.yml b/.forgejo/workflows/test.yml index 4da543e..ab8891e 100644 --- a/.forgejo/workflows/test.yml +++ b/.forgejo/workflows/test.yml @@ -2,13 +2,14 @@ on: [push, pull_request] jobs: test: - matrix: - GHC_VERSION: - - 9.6 - - 9.4 - - 8 + strategy: + matrix: + GHC_VERSION: + - 9.6 + - 9.4 + - 8 steps: - image: haskell:${GHC_VERSION} + image: haskell:${{ matrix.GHC_VERSION }} commands: - apt-get update - apt-get install -y xorg-dev libxrandr-dev libpango1.0-dev |