File tree Expand file tree Collapse file tree 1 file changed +23
-23
lines changed Expand file tree Collapse file tree 1 file changed +23
-23
lines changed Original file line number Diff line number Diff line change 1010 workflow_dispatch :
1111
1212jobs :
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
You can’t perform that action at this time.
0 commit comments