From 65d468cbac28f1b930fbaecc488c8a94f38a6097 Mon Sep 17 00:00:00 2001 From: Jeffrey Bencteux Date: Mon, 24 Jul 2023 08:58:49 +0200 Subject: [PATCH] change CI OS macOS -> Ubuntu --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 99f8c95..f24323c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,10 +4,10 @@ on: pull_request: jobs: shellcheck: - runs-on: macos-latest + runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: Install shellcheck - run: brew install shellcheck + run: sudo apt install shellcheck - name: Run shellcheck run: shellcheck --color=always mailsecchk.sh