We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9935af2 commit e8d5482Copy full SHA for e8d5482
.github/workflows/ci.yaml
@@ -7,8 +7,8 @@ on:
7
pull_request:
8
9
jobs:
10
- build_and_test:
11
- name: Build and Test
+ build:
+ name: Build
12
runs-on: macos-latest
13
14
steps:
@@ -20,8 +20,16 @@ jobs:
20
- name: Build library
21
run: swift build --configuration debug
22
23
- - name: Build test target
24
- run: swift build --configuration debug --target PodiumRequestsClientTests
+ test:
+ name: Run Tests
25
+ runs-on: macos-latest
26
+ needs: build
27
+
28
+ steps:
29
+ - uses: actions/checkout@v4
30
31
+ - name: Select Xcode
32
+ run: sudo xcode-select -s /Applications/Xcode.app
33
34
- name: Run tests
- run: swift test --skip-build --parallel
35
+ run: swift test --parallel
0 commit comments