Skip to content

Commit 3301f4d

Browse files
committed
Don't swallow errors in CI and scripts
1 parent c631aa6 commit 3301f4d

16 files changed

+37
-12
lines changed

.github/CONTRIBUTORS.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,7 @@
44

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

7-
> None so far; you could be the first! See the section below on how to contribute.
8-
>
9-
> To the first person contributing to this project, please remove this block and replace it with your information using the following format: `- [Your Name](https://github.com/YourGitHubUsername)`
7+
- [Dave Abrahams](https://github.com/dabrahams)
108

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

.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: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
name: Xcode Project
1+
: Xcode Project
2+
defaults:
3+
run:
4+
shell: bash -eo pipefail {0}
25
on:
36
workflow_dispatch:
47
push:

0 commit comments

Comments
 (0)