diff --git a/.github/actions/action.yml b/.github/actions/action.yml index 9a99f0e6..87388910 100644 --- a/.github/actions/action.yml +++ b/.github/actions/action.yml @@ -33,7 +33,6 @@ runs: with: xcode: ${{ inputs.xcode }} action: none - shell: bash -euo pipefail - name: Save Xcode version run: xcodebuild -version | tee .xcode-version shell: bash -euo pipefail @@ -43,7 +42,6 @@ runs: with: path: Carthage key: v1-carthage-${{ hashFiles('.xcode-version') }}-${{ hashFiles('Cartfile.resolved') }} - shell: bash -euo pipefail - name: Install dependencies if: steps.restore-carthage-cache.outputs.cache-hit != 'true' run: carthage bootstrap --platform ${{ inputs.platform }} --no-use-binaries --cache-builds @@ -55,7 +53,6 @@ runs: with: path: Carthage key: v1-carthage-${{ hashFiles('.xcode-version') }}-${{ hashFiles('Cartfile.resolved') }} - shell: bash -euo pipefail - name: Run tests uses: mxcl/xcodebuild@v2 with: @@ -64,4 +61,3 @@ runs: scheme: ${{ inputs.scheme }} code-coverage: true configuration: release - shell: bash -euo pipefail