diff --git a/.github/actions/cross-compile-check/action.yaml b/.github/actions/cross-compile-check/action.yaml index 672f00d6f..ee643f836 100644 --- a/.github/actions/cross-compile-check/action.yaml +++ b/.github/actions/cross-compile-check/action.yaml @@ -6,16 +6,20 @@ runs: steps: - name: Configure G4 run: cmake --preset=cross . + shell: bash working-directory: ${{ env.DEFAULT_DIRECTORY }} - name: Format run: cmake --build ./build-cross --target ${{ env.TARGET }}-format-ci + shell: bash working-directory: ${{ env.DEFAULT_DIRECTORY }} - name: Build g4 run: cmake --build --preset=${{ env.TARGET }} + shell: bash working-directory: ${{ env.DEFAULT_DIRECTORY }} - name: Lint run: cmake --build ./build-cross --target ${{ env.TARGET }}-lint + shell: bash working-directory: ${{ env.DEFAULT_DIRECTORY }}