From 665f160b4d0b79e85e66c6cc83e442d72eb40868 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Sat, 8 Aug 2026 06:51:11 +0200 Subject: ci: Use recommended way to detect the operating system --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 838f3452..fdb00659 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -51,11 +51,11 @@ jobs: luaRocksVersion: "3.13.0" - name: 'Setup macOS deps' - if: ${{ contains(matrix.os, 'macos') }} + if: runner.os == 'macOS' run: brew install openssl bzip2 - name: 'Setup Ubuntu deps' - if: ${{ contains(matrix.os, 'ubuntu') }} + if: runner.os == 'Linux' run: sudo apt-get install libbz2-dev - name: Prep -- cgit v1.2.3-55-g6feb