We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b3f91c commit 447670cCopy full SHA for 447670c
.github/workflows/spm-ios.yml
@@ -39,9 +39,9 @@ jobs:
39
- name: Build
40
run: |
41
set -o pipefail
42
- xcodebuild build -scheme "$SCHEME" -destination "$IOS_DEST" | xcpretty -c
+ xcodebuild build -scheme "$SCHEME" -destination "$IOS_DEST" SWIFT_STRICT_CONCURRENCY=complete | xcpretty -c
43
44
- name: Test
45
46
47
- xcodebuild test -scheme "$SCHEME" -destination "$IOS_DEST" | xcpretty -c
+ xcodebuild test -scheme "$SCHEME" -destination "$IOS_DEST" SWIFT_STRICT_CONCURRENCY=complete | xcpretty -c
scripts/lint.zsh
@@ -9,6 +9,10 @@
9
#
10
# Runs SwiftLint and checks for installation of correct version.
11
12
+if [[ "${GITHUB_ACTIONS}" ]]; then
13
+ exit 0
14
+fi
15
+
16
set -e
17
export PATH="$PATH:/opt/homebrew/bin"
18
0 commit comments