This repository was archived by the owner on Jun 28, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +66
-3
lines changed Expand file tree Collapse file tree 4 files changed +66
-3
lines changed Original file line number Diff line number Diff line change 6
6
python_version :
7
7
description : The Python version.
8
8
required : false
9
- default : ' 3.11 '
9
+ default : ' 3.8 '
10
10
poetry_version :
11
11
description : The Poetry version.
12
12
required : false
Original file line number Diff line number Diff line change 8
8
description : The Python version.
9
9
type : string
10
10
required : false
11
- default : ' 3.11 '
11
+ default : ' 3.8 '
12
12
runs_on :
13
13
description : The runner environment.
14
14
type : string
Original file line number Diff line number Diff line change
1
+ ---
2
+ name : Check
3
+
4
+ on :
5
+ push :
6
+ branches :
7
+ - ' **'
8
+
9
+ jobs :
10
+ build :
11
+ name : Build (Python ${{ matrix.python }} on ${{ matrix.os_name }})
12
+ uses : ./.github/workflows/_build.yml
13
+ with :
14
+ python_version : ${{ matrix.python }}
15
+ runs_on : ${{ matrix.os }}
16
+ strategy :
17
+ fail-fast : false
18
+ matrix :
19
+ os :
20
+ - ubuntu-latest
21
+ include :
22
+ - os : ubuntu-latest
23
+ os_name : Linux
24
+ install :
25
+ name : Install (Python ${{ matrix.python }} on ${{ matrix.os_name }})
26
+ runs-on : ${{ matrix.os }}
27
+ timeout-minutes : 30
28
+ needs : build
29
+ strategy :
30
+ fail-fast : false
31
+ matrix :
32
+ os :
33
+ - ubuntu-latest
34
+ python :
35
+ - ' 3.8'
36
+ include :
37
+ - os : ubuntu-latest
38
+ os_name : Linux
39
+ steps :
40
+ - name : Setup Python
41
+ uses : actions/setup-python@v4
42
+ with :
43
+ python-version : ${{ matrix.python }}
44
+ - name : Download artifact
45
+ uses : actions/download-artifact@v3
46
+ with :
47
+ name : ${{ needs.build.outputs.artifact_name }}
48
+ path : .
49
+ - name : Find wheels
50
+ uses : tj-actions/glob@v16
51
+ id : wheels
52
+ with :
53
+ files : ' *.whl'
54
+ - name : Install
55
+ run : pip install ${{ steps.wheels.outputs.paths }}
56
+ - name : Create main.py
57
+ uses :
DamianReeves/[email protected]
58
+ with :
59
+ write-mode : overwrite
60
+ path : main.py
61
+ contents : |
62
+ import seamapi
63
+ - name : Run
64
+ run : python main.py
Original file line number Diff line number Diff line change 1
1
# Generated by seam-plop
2
2
name : Python Test
3
3
on :
4
- push :
5
4
workflow_dispatch :
6
5
inputs :
7
6
sdkSha :
You can’t perform that action at this time.
0 commit comments