summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/full_check.yaml6
1 files 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