File tree 2 files changed +8
-5
lines changed
2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -32,8 +32,9 @@ matrix:
32
32
sudo : required
33
33
dist : trusty
34
34
name : Swift 5.0 compatibility
35
- install :
35
+ before_install :
36
36
- eval "$(curl -sL https://swiftenv.fuller.li/install.sh)"
37
+ - swiftenv install 5.0
37
38
- swiftenv global 5.0
38
39
script :
39
40
- swift test
@@ -53,8 +54,9 @@ matrix:
53
54
sudo : required
54
55
dist : trusty
55
56
name : Swift 4.2 compatibility
56
- install :
57
+ before_install :
57
58
- eval "$(curl -sL https://swiftenv.fuller.li/install.sh)"
59
+ - swiftenv install 4.2
58
60
- swiftenv global 4.2
59
61
script :
60
62
- swift test
@@ -74,8 +76,9 @@ matrix:
74
76
sudo : required
75
77
dist : trusty
76
78
name : Swift 4.1 compatibility
77
- install :
79
+ before_install :
78
80
- eval "$(curl -sL https://swiftenv.fuller.li/install.sh)"
81
+ - swiftenv install 4.1
79
82
- swiftenv global 4.1
80
83
script :
81
84
- swift test
Original file line number Diff line number Diff line change @@ -29,5 +29,5 @@ if onlyPodspec != onlyPackage {
29
29
}
30
30
31
31
// Workaround for SwiftLint bug https://github.com/ashfurrow/danger-swiftlint/issues/4
32
- SwiftLint . lint ( directory: " Sources " , configFile: " .swiftlint.yml " )
33
- SwiftLint . lint ( directory: " Tests " , configFile: " Tests/SwiftyUserDefaultsTests/.swiftlint.yml " )
32
+ SwiftLint . lint ( inline : true , directory: " Sources " , configFile: " .swiftlint.yml " )
33
+ SwiftLint . lint ( inline : true , directory: " Tests " , configFile: " Tests/SwiftyUserDefaultsTests/.swiftlint.yml " )
You can’t perform that action at this time.
0 commit comments