From df0d2854ea833e9ce5c79ab4280f0e9a2bbbaab3 Mon Sep 17 00:00:00 2001 From: merlos <404446+merlos@users.noreply.github.com> Date: Fri, 22 Dec 2023 10:22:19 +0300 Subject: [PATCH] add osx run --- .github/workflows/install-tests.yml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.github/workflows/install-tests.yml b/.github/workflows/install-tests.yml index a0169c9..428373f 100644 --- a/.github/workflows/install-tests.yml +++ b/.github/workflows/install-tests.yml @@ -17,4 +17,15 @@ jobs: cd scripts/installer ./install-magasin.sh -c - + run-macos: + runs-on: macos-latest # Specifies the macOS runner + steps: + - name: Checkout code + uses: actions/checkout@v2 # Action to checkout your repository's code + + - name: Run a macOS command + run: | + ls -la + cd scripts/installer + ./install-magasin.sh -c + \ No newline at end of file