diff options
| author | Czarek Nakamoto <cyjan@mrcyjanek.net> | 2025-02-17 11:42:11 +0100 |
|---|---|---|
| committer | Czarek Nakamoto <cyjan@mrcyjanek.net> | 2025-02-17 11:42:11 +0100 |
| commit | 235b115508403abf86b0d2e83b132771fba1db9b (patch) | |
| tree | 90424f29bac6d196fa62fa1f2687f95e2e2ebf8a | |
| parent | e4e8227def32dcc7bbb880dcaf792e525e51326d (diff) | |
Properly check for darwin
| -rw-r--r-- | .github/workflows/full_check.yaml | 6 |
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 |
