Skip to content

Commit 5c49093

Browse files
committed
[DO NOT MERGE] test commit
1 parent fdd9d1b commit 5c49093

File tree

1 file changed

+23
-23
lines changed

1 file changed

+23
-23
lines changed

.github/workflows/test.yml

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -10,25 +10,25 @@ on:
1010
workflow_dispatch:
1111

1212
jobs:
13-
test:
14-
name: Test
15-
runs-on: macos-12
16-
strategy:
17-
matrix:
18-
xcode_version:
19-
- 14.2
20-
env:
21-
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode_version }}.app
22-
steps:
23-
- uses: actions/checkout@v2
24-
- name: Show environments
25-
run: |
26-
swift --version
27-
xcodebuild -version
28-
- name: Test library
29-
run: make test-library
30-
- name: Test examples
31-
run: make test-examples
13+
# test:
14+
# name: Test
15+
# runs-on: macos-12
16+
# strategy:
17+
# matrix:
18+
# xcode_version:
19+
# - 14.2
20+
# env:
21+
# DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode_version }}.app
22+
# steps:
23+
# - uses: actions/checkout@v2
24+
# - name: Show environments
25+
# run: |
26+
# swift --version
27+
# xcodebuild -version
28+
# - name: Test library
29+
# run: make test-library
30+
# - name: Test examples
31+
# run: make test-examples
3232

3333
validation:
3434
name: Validation
@@ -43,10 +43,10 @@ jobs:
4343
key: spm-${{ runner.os }}-${{env.DEVELOPER_DIR}}-${{ hashFiles('Package.swift') }}-${{ github.job }}
4444
- name: Validate lint
4545
run: make lint
46-
- name: Validate format
47-
run: |
48-
make format
49-
if [ -n "$(git status --porcelain)" ]; then echo "Make sure that the code is formated by 'make format'."; exit 1; fi
46+
# - name: Validate format
47+
# run: |
48+
# make format
49+
# if [ -n "$(git status --porcelain)" ]; then echo "Make sure that the code is formated by 'make format'."; exit 1; fi
5050
- name: Validate example project
5151
run: |
5252
make proj

0 commit comments

Comments
 (0)