We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ca2509 commit 7562e53Copy full SHA for 7562e53
1 file changed
.github/workflows/swift.yml
@@ -10,32 +10,20 @@ on:
10
branches: [ "main" ]
11
12
jobs:
13
-
14
- swiftlint:
15
- runs-on: macos-latest
16
17
- steps:
18
- - uses: actions/checkout@v4
19
- - name: Lint code using SwiftLint
20
- run: swiftlint lint --reporter github-actions-logging
21
22
build:
23
runs-on: macos-latest
24
25
26
+ steps:
27
- uses: actions/checkout@v4
28
- uses: swift-actions/setup-swift@v1
29
with:
30
swift-version: "5.8.1"
31
32
- name: Build
33
run: swift build -v
34
35
- name: Run tests
+ run: |
+ run: swift test -v
36
env:
37
SQ_LITE_CLOUD_HOST: ${{ secrets.SQ_LITE_CLOUD_HOST }}
38
SQ_LITE_CLOUD_PASS: ${{ secrets.SQ_LITE_CLOUD_PASS }}
39
SQ_LITE_CLOUD_USER: ${{ secrets.SQ_LITE_CLOUD_USER }}
40
- run: |
41
- run: swift test --enable-code-coverage -v
0 commit comments