Skip to content

Commit e12b478

Browse files
Merge pull request #24 from dabrahams/dont-hide-ci-failures
Make sure failures in multiline CI steps are not swallowed.
2 parents f2776a7 + 4cdf8fc commit e12b478

File tree

10 files changed

+28
-0
lines changed

10 files changed

+28
-0
lines changed

.github/CONTRIBUTORS.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
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.
66

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

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

.github/workflows/carthage.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
name: Carthage
2+
defaults:
3+
run:
4+
shell: bash -eo pipefail {0}
25
on:
36
workflow_dispatch:
47
push:

.github/workflows/cocoapods.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
name: Cocoapods
2+
defaults:
3+
run:
4+
shell: bash -eo pipefail {0}
25
on:
36
workflow_dispatch:
47
push:

.github/workflows/documentation.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
name: Documentation
2+
defaults:
3+
run:
4+
shell: bash -eo pipefail {0}
25
on:
36
workflow_dispatch:
47
push:

.github/workflows/publish-cocoapods.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
name: Publish CocoaPods
2+
defaults:
3+
run:
4+
shell: bash -eo pipefail {0}
25
on:
36
release:
47
types: [published]

.github/workflows/swift-package.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
name: Swift Package
2+
defaults:
3+
run:
4+
shell: bash -eo pipefail {0}
25
on:
36
workflow_dispatch:
47
push:

.github/workflows/swiftlint.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
name: SwiftLint
2+
defaults:
3+
run:
4+
shell: bash -eo pipefail {0}
25
on:
36
workflow_dispatch:
47
push:

.github/workflows/upload-assets.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
name: Upload Assets
2+
defaults:
3+
run:
4+
shell: bash -eo pipefail {0}
25
on:
36
release:
47
types: [published]

.github/workflows/xcframework.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
name: XCFramework
2+
defaults:
3+
run:
4+
shell: bash -eo pipefail {0}
25
on:
36
workflow_dispatch:
47
push:

.github/workflows/xcodebuild.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
name: Xcode Project
2+
defaults:
3+
run:
4+
shell: bash -eo pipefail {0}
25
on:
36
workflow_dispatch:
47
push:

0 commit comments

Comments
 (0)