Skip to content

Commit c77b211

Browse files
committed
Lint fix
1 parent 764ef63 commit c77b211

3 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,12 @@ jobs:
2626
run: pod repo update
2727
- name: "Lint"
2828
run: make lint
29+
- name: "Run tests (tuist)"
30+
run: |
31+
brew install tuist
32+
cd Tests/Tuist/SQLite-Test
33+
tuist install
34+
tuist test
2935
- name: "Run tests (PACKAGE_MANAGER_COMMAND: test)"
3036
env:
3137
PACKAGE_MANAGER_COMMAND: test -Xswiftc -warnings-as-errors
@@ -70,12 +76,6 @@ jobs:
7076
env:
7177
VALIDATOR_SUBSPEC: SQLCipher
7278
run: ./run-tests.sh
73-
- name: "Run tests (tuist)"
74-
run: |
75-
brew install tuist
76-
cd Tests/Tuist/SQLite-Test
77-
tuist install
78-
tuist test
7979
build-linux:
8080
runs-on: ubuntu-latest
8181
steps:

Tests/Tuist/SQLite-Test/Project.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ let project = Project(
1212
with: [
1313
"UILaunchScreen": [
1414
"UIColorName": "",
15-
"UIImageName": "",
16-
],
15+
"UIImageName": ""
16+
]
1717
]
1818
),
1919
buildableFolders: [
@@ -31,6 +31,6 @@ let project = Project(
3131
"SQLite-Test/Tests"
3232
],
3333
dependencies: [.target(name: "SQLite-Test")]
34-
),
34+
)
3535
]
3636
)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
import ProjectDescription
22

3-
let tuist = Tuist(project: .tuist())
3+
let tuist = Tuist(project: .tuist())

0 commit comments

Comments
 (0)