From 235b115508403abf86b0d2e83b132771fba1db9b Mon Sep 17 00:00:00 2001 From: Czarek Nakamoto Date: Mon, 17 Feb 2025 11:42:11 +0100 Subject: Properly check for darwin --- .github/workflows/full_check.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/full_check.yaml b/.github/workflows/full_check.yaml index 74c40fe..3b019d5 100644 --- a/.github/workflows/full_check.yaml +++ b/.github/workflows/full_check.yaml @@ -50,11 +50,11 @@ jobs: - name: Install dependencies run: | - if [ "${{ matrix.container }}" != "" ]; then + if [ "$(uname)" = "Darwin" ]; then + brew install ${{ matrix.packages }} + else apt update apt install -y ${{ matrix.packages }} - else - brew install ${{ matrix.packages }} fi - uses: actions/checkout@v4 -- cgit v1.2.3