We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c406af6 commit c439b67Copy full SHA for c439b67
1 file changed
.github/workflows/pr-tests.yml
@@ -10,7 +10,7 @@ permissions:
10
contents: read
11
12
jobs:
13
- test:
+ core-tests:
14
runs-on: macos-latest
15
timeout-minutes: 20
16
steps:
@@ -29,3 +29,24 @@ jobs:
29
run: |
30
set -o pipefail
31
swift test --skip TextDiffSnapshotTests 2>&1 | xcsift --warnings
32
+
33
+ snapshot-tests:
34
+ runs-on: macos-latest
35
+ timeout-minutes: 20
36
+ continue-on-error: true
37
+ steps:
38
+ - name: Checkout
39
+ uses: actions/checkout@v4
40
41
+ - name: Select latest stable Xcode
42
+ uses: maxim-lobanov/setup-xcode@v1
43
+ with:
44
+ xcode-version: "latest-stable"
45
46
+ - name: Install xcsift
47
+ run: brew install xcsift
48
49
+ - name: Run snapshot tests
50
+ run: |
51
+ set -o pipefail
52
+ swift test --filter TextDiffSnapshotTests 2>&1 | xcsift --warnings
0 commit comments