You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/tutorial.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -151,7 +151,7 @@ This will give you a test report and a lint report. You should see no errors exc
151
151
## Step 6: Create GitHub Repo
152
152
153
153
???+Info
154
-
Going through step 6 and 7 is tedious. So that's why we provide a bash script --github.sh, to help creating repo, setting secrets and publishing your code to the repo automatically.
154
+
Going through step 6 and 7 is tedious. So that's why we provide a bash script -- repo.sh, to help creating repo, setting secrets and publishing your code to the repo automatically.
155
155
156
156
The script looks like the following:
157
157
```
@@ -290,7 +290,7 @@ The following section will address how to customize github workflow:
290
290
# The type of runner that the job will run on
291
291
strategy:
292
292
matrix:
293
-
python-versions: ['3.7,' '3.8',' 3.9', '3.10']
293
+
python-versions: ['3.8',' 3.9', '3.10', '3.11']
294
294
# github action doesn't goes well with windows due to docker support
295
295
# github action doesn't goes well with macos due to `no docker command`
296
296
#os: [ubuntu-20.04, windows-latest, macos-latest]
@@ -308,11 +308,11 @@ The following section will address how to customize github workflow:
308
308
# you may need to change os below
309
309
runs-on: ubuntu-latest
310
310
steps:
311
-
- uses: actions/checkout@v2
312
-
- uses: actions/setup-python@v2
311
+
- uses: actions/checkout@v4
312
+
- uses: actions/setup-python@v4
313
313
with:
314
314
# you may need to change python version below
315
-
python-version: '3.9'
315
+
python-version: '3.11'
316
316
```
317
317
318
318
ppw also provide example configuration about how to use service and webhooks (Dingtalk notification robot), but it's disabled by default. Uncomment these lines to enable it:
0 commit comments