From 05783ac8f4b8ecdc299ee898c7e9ae6cd742c5a1 Mon Sep 17 00:00:00 2001 From: Margen67 Date: Wed, 9 Mar 2022 12:23:37 -0800 Subject: [PATCH] ci: Use default run shell for code format check This is for consistency, and so shell doesn't have to be set for potential future run steps. --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e00f482856..e42e3036f8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,11 +28,13 @@ jobs: name: Check code formatting runs-on: ubuntu-latest container: openrct2/openrct2-build:4-format + defaults: + run: + shell: sh steps: - name: Checkout uses: actions/checkout@v3 - name: Run clang-format - shell: sh run: scripts/check-code-formatting windows: name: Windows