9
9
steps :
10
10
- name : Checkout Repository
11
11
uses : actions/checkout@v4
12
- - name : Set up Python 3.8
12
+ - name : Set up Python 3.9
13
13
uses : actions/setup-python@v5
14
14
with :
15
- python-version : 3.8
15
+ python-version : 3.9
16
16
- name : Install dependencies
17
17
run : |
18
- python3.8 -m pip install nox
18
+ python3.9 -m pip install nox
19
19
- name : Lint the code
20
20
run : nox -s lint
21
21
@@ -24,13 +24,13 @@ jobs:
24
24
steps :
25
25
- name : Checkout Repository
26
26
uses : actions/checkout@v4
27
- - name : Set up Python 3.8
27
+ - name : Set up Python 3.9
28
28
uses : actions/setup-python@v5
29
29
with :
30
- python-version : 3.8
30
+ python-version : 3.9
31
31
- name : Install dependencies
32
32
run : |
33
- python3.8 -m pip install nox
33
+ python3.9 -m pip install nox
34
34
- name : Run the api generator
35
35
run : nox -s generate
36
36
@@ -39,16 +39,16 @@ jobs:
39
39
steps :
40
40
- name : Checkout Repository
41
41
uses : actions/checkout@v4
42
- - name : Set up Python 3.8
42
+ - name : Set up Python 3.9
43
43
uses : actions/setup-python@v5
44
44
with :
45
- python-version : 3.8
45
+ python-version : 3.9
46
46
- name : Install build tools
47
47
run : |
48
- python3.8 -m pip install --upgrade build
48
+ python3.9 -m pip install --upgrade build
49
49
- name : Build project for distribution
50
50
run : |
51
- python3.8 -m build
51
+ python3.9 -m build
52
52
53
53
twine-check :
54
54
runs-on : ubuntu-latest
0 commit comments