From adf7425b9a6dd2cadf2960c0219bb0c50d653323 Mon Sep 17 00:00:00 2001 From: Nate Whetsell Date: Thu, 18 Jan 2024 12:19:26 -0500 Subject: [PATCH] Try to fix installing Pulsar on macOS --- .github/workflows/main.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 06c3e6d..959dc88 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -9,14 +9,18 @@ jobs: Test: strategy: matrix: - os: [ubuntu-latest, macos-latest] + os: [macos-latest, ubuntu-latest] runs-on: ${{ matrix.os }} steps: - name: Check out repository uses: actions/checkout@v4 - - name: Install Pulsar + - name: Install Pulsar on macOS + uses: brew install pulsar + if: ${{ matrix.os == 'macos-latest' }} + - name: Install Pulsar on Linux uses: pulsar-edit/action-pulsar-dependency@v3 + if: ${{ matrix.os == 'ubuntu-latest' }} - name: Install dependencies run: ppm install