35
35
36
36
- name : Run protolint
37
37
# Only use hashes here, as we are passing the github token, we want to
38
- # make sure updates are done conciously to avoid security issues if the
38
+ # make sure updates are done consciously to avoid security issues if the
39
39
# action repo gets hacked
40
40
uses : yoheimuta/action-protolint@e94cc01b1ad085ed9427098442f66f2519c723eb # v1.0.0
41
41
with :
55
55
- ubuntu-20.04
56
56
python :
57
57
- " 3.11"
58
+ nox-session :
59
+ # To speed things up a bit we use the special ci_checks_max session
60
+ # that uses the same venv to run multiple linting sessions
61
+ - " ci_checks_max"
62
+ - " pytest_min"
58
63
runs-on : ${{ matrix.os }}
59
64
60
65
steps :
66
+ - name : Print environment (debug)
67
+ run : env
68
+
61
69
- name : Fetch sources
62
70
uses : actions/checkout@v3
63
71
with :
@@ -73,11 +81,25 @@ jobs:
73
81
run : |
74
82
python -m pip install --upgrade pip
75
83
python -m pip install -e .[dev-noxfile]
84
+ pip freeze
85
+
86
+ - name : Create nox venv
87
+ env :
88
+ NOX_SESSION : ${{ matrix.nox-session }}
89
+ run : nox --install-only -e "$NOX_SESSION"
90
+
91
+ - name : Print pip freeze for nox venv (debug)
92
+ env :
93
+ NOX_SESSION : ${{ matrix.nox-session }}
94
+ run : |
95
+ . ".nox/$NOX_SESSION/bin/activate"
96
+ pip freeze
97
+ deactivate
76
98
77
99
- name : Run nox
78
- # To speed things up a bit we use the special ci_checks_max session
79
- # that uses the same venv to run multiple linting sessions
80
- run : nox -e ci_checks_max pytest_min
100
+ env :
101
+ NOX_SESSION : ${{ matrix.nox-session }}
102
+ run : nox -R -e "$NOX_SESSION"
81
103
timeout-minutes : 10
82
104
83
105
build :
99
121
run : |
100
122
python -m pip install -U pip
101
123
python -m pip install -U build
124
+ pip freeze
102
125
103
126
- name : Build the source and binary distribution
104
127
run : python -m build
@@ -133,6 +156,7 @@ jobs:
133
156
run : |
134
157
python -m pip install -U pip
135
158
python -m pip install .[dev-mkdocs]
159
+ pip freeze
136
160
137
161
- name : Generate the documentation
138
162
env :
@@ -196,6 +220,8 @@ jobs:
196
220
- name : Fetch sources
197
221
if : steps.mike-metadata.outputs.version
198
222
uses : actions/checkout@v3
223
+ with :
224
+ submodules : true
199
225
200
226
- name : Setup Git user and e-mail
201
227
if : steps.mike-metadata.outputs.version
@@ -213,6 +239,7 @@ jobs:
213
239
run : |
214
240
python -m pip install -U pip
215
241
python -m pip install .[dev-mkdocs]
242
+ pip freeze
216
243
217
244
- name : Fetch the gh-pages branch
218
245
if : steps.mike-metadata.outputs.version
0 commit comments