From: dundargoc <33953936+dundargoc@users.noreply.github.com> Date: Wed, 10 Jul 2024 11:48:32 +0000 (+0200) Subject: ci(macos): install julia dependency (#268) X-Git-Tag: archive/raspbian/2.11.3-2+rpi1^2~10^2~1^2~12 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=eba7dfb44ff4faa127d07d2b023d1153e48048ce;p=utf8proc.git ci(macos): install julia dependency (#268) Otherwise the job fails with the error message "/bin/sh: julia: command not found" --- diff --git a/.github/workflows/make.yml b/.github/workflows/make.yml index 1ee2299..acc975d 100644 --- a/.github/workflows/make.yml +++ b/.github/workflows/make.yml @@ -18,9 +18,9 @@ jobs: steps: - uses: actions/checkout@v2 # TODO: update makefile to check MANIFEST - # - name: Install dependencies (MacOS) - # if: matrix.config.os == 'macos-latest' - # run: brew install ruby findutils + - name: Install dependencies (MacOS) + if: runner.os == 'macOS' + run: brew install julia - name: Check MANIFEST if: matrix.config.os == 'ubuntu-latest'