Skip to content

Commit d4a6c37

Browse files
author
Yuki Miida
authored
Merge pull request #40 from onoyuuya/fix-ci-errors
Resolve CI errors
2 parents e510e75 + 156b017 commit d4a6c37

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ jobs:
88
- name: Run Tests with Xcode
99
run: |
1010
DESTINATION="platform=iOS Simulator,name=iPhone 8" SCHEME="Puree"
11-
xcodebuild test -project Puree.xcodeproj -scheme "${SCHEME}" -destination "${DESTINATION}"
11+
xcodebuild test -project Puree.xcodeproj -scheme "${SCHEME}" -destination "${DESTINATION}" -configuration Debug CODE_SIGNING_ALLOWED=NO
1212
SwiftPM:
1313
runs-on: macos-latest
1414
steps:
1515
- uses: actions/checkout@v2
1616
- name: Run Tests with Swift Package Manager
17-
run: swift test -Xswiftc "-target" -Xswiftc "x86_64-apple-macosx10.12"
17+
run: swift test
1818
SwiftLint:
1919
runs-on: ubuntu-latest
2020
steps:

.swiftlint.yml

+1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@ included:
44
disabled_rules:
55
- line_length
66
- file_length
7+
- non_optional_string_data_conversion
78
trailing_comma:
89
mandatory_comma: true

0 commit comments

Comments
 (0)