File tree Expand file tree Collapse file tree 4 files changed +540
-0
lines changed
tests/test_cocoapods/cocoapods-tips/JWSCocoapodsTips
JWSCocoapodsTips.xcodeproj Expand file tree Collapse file tree 4 files changed +540
-0
lines changed Original file line number Diff line number Diff line change 29
29
tox -e run_ubuntu
30
30
build_windows :
31
31
runs-on : windows-latest
32
+ strategy :
33
+ matrix :
34
+ python-version : [3.6]
32
35
steps :
33
36
- uses : actions/checkout@v2
37
+ - name : Set up Python ${{ matrix.python-version }}
38
+ uses : actions/setup-python@v2
39
+ with :
40
+ python-version : ${{ matrix.python-version }}
34
41
- name : Install dependencies
35
42
run : |
36
43
python -m pip install --upgrade pip
39
46
- name : Run Tox
40
47
run : |
41
48
tox -e run_windows
49
+ build_macos :
50
+ runs-on : macos-latest
51
+ strategy :
52
+ matrix :
53
+ python-version : [3.6]
54
+ steps :
55
+ - uses : actions/checkout@v2
56
+ - name : Set up Python ${{ matrix.python-version }}
57
+ uses : actions/setup-python@v2
58
+ with :
59
+ python-version : ${{ matrix.python-version }}
60
+ - name : Install dependencies
61
+ run : |
62
+ python -m pip install --upgrade pip
63
+ pip install pyinstaller
64
+ pip install tox
65
+ pip install tox-wheel
66
+ pip install fosslight_dependency
67
+ - name : Install Pod
68
+ working-directory : ./tests/test_cocoapods/cocoapods-tips/JWSCocoapodsTips
69
+ run : pod install --clean-install
70
+ - name : Make executable file
71
+ run : pyinstaller --onefile cli.py -n cli --additional-hooks-dir=hooks
72
+ - name : Run Test
73
+ working-directory : ./dist
74
+ run : ./cli -p ../tests/test_cocoapods/cocoapods-tips/JWSCocoapodsTips -o ../tests/result/Cocoapods
75
+ - name : Run Flake8
76
+ run : tox -e run_macos
42
77
reuse :
43
78
runs-on : ubuntu-latest
44
79
steps :
Original file line number Diff line number Diff line change @@ -61,3 +61,7 @@ License: Apache-2.0
61
61
Files: tests/test_pypi/*
62
62
Copyright: 2021 LG Electronics
63
63
License: Apache-2.0
64
+
65
+ Files: tests/test_cocoapods/cocoapods-tips*
66
+ Copyright: 2017 ClintJang
67
+ License: MIT
You can’t perform that action at this time.
0 commit comments