Skip to content

Commit

Permalink
Try to fix installing Pulsar on macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
nwhetsell committed Jan 18, 2024
1 parent eec1d29 commit adf7425
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit adf7425

Please sign in to comment.