From e8ed625479e3adfeae1c0eab5386a2e5508a7b99 Mon Sep 17 00:00:00 2001 From: William Rusnack Date: Mon, 8 Jul 2024 16:53:25 -0400 Subject: [PATCH] fix list --- .github/workflows/tests.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 8cbdf013..67fd9ad9 100755 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -7,17 +7,17 @@ on: - master jobs: - macos-latest: - name: macos-latest - runs-on: macos-latest + tests: + name: tests + runs-on: ${{ matrix.os }} strategy: matrix: os: - macos-latest resolver: - 20.26 - 19.33 - 18.28 + - 20.26 + - 19.33 + - 18.28 steps: - name: Install LLVM 12 if: ${{ matrix.os == macos-latest && matrix.resolver < 20 }} @@ -38,9 +38,9 @@ jobs: - name: Build and run tests shell: bash run: | - set -ex - stack --version - stack test --fast --no-terminal --resolver=${{ matrix.resolver }} + set -ex + stack --version + stack test --fast --no-terminal --resolver=${{ matrix.resolver }} # macos-13: # name: macos-13