Skip to content

Commit

Permalink
Merge pull request #24 from dabrahams/dont-hide-ci-failures
Browse files Browse the repository at this point in the history
Make sure failures in multiline CI steps are not swallowed.
  • Loading branch information
SomeRandomiOSDev authored Nov 10, 2023
2 parents f2776a7 + 4cdf8fc commit e12b478
Show file tree
Hide file tree
Showing 10 changed files with 28 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
I would like to give a special thanks to all of the people below who have contributed to this project and to all of those who will contribute to it moving forward.

- [Jos Kuijpers](https://github.com/joskuijpers)
- [Dave Abrahams](https://github.com/dabrahams)

## I would like to join this list! How can I help the project?

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/carthage.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
name: Carthage
defaults:
run:
shell: bash -eo pipefail {0}
on:
workflow_dispatch:
push:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/cocoapods.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
name: Cocoapods
defaults:
run:
shell: bash -eo pipefail {0}
on:
workflow_dispatch:
push:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
name: Documentation
defaults:
run:
shell: bash -eo pipefail {0}
on:
workflow_dispatch:
push:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/publish-cocoapods.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
name: Publish CocoaPods
defaults:
run:
shell: bash -eo pipefail {0}
on:
release:
types: [published]
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/swift-package.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
name: Swift Package
defaults:
run:
shell: bash -eo pipefail {0}
on:
workflow_dispatch:
push:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/swiftlint.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
name: SwiftLint
defaults:
run:
shell: bash -eo pipefail {0}
on:
workflow_dispatch:
push:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/upload-assets.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
name: Upload Assets
defaults:
run:
shell: bash -eo pipefail {0}
on:
release:
types: [published]
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/xcframework.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
name: XCFramework
defaults:
run:
shell: bash -eo pipefail {0}
on:
workflow_dispatch:
push:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/xcodebuild.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
name: Xcode Project
defaults:
run:
shell: bash -eo pipefail {0}
on:
workflow_dispatch:
push:
Expand Down

0 comments on commit e12b478

Please sign in to comment.