-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature pyinstaller #3
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,6 @@ jobs: | |
test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: ChatGPT CodeReviewer | ||
- uses: anc95/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
|
||
file: f | ||
f: | ||
pyinstaller -F helloworld.py | ||
|
||
dir: d | ||
d: | ||
pyinstaller helloworld.py | ||
|
||
clean: | ||
rm -rf build dist __pycache__ *.spec | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. with the code review
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# -*- coding: UTF-8 -*- | ||
|
||
# Filename : helloworld.py | ||
# author by : | ||
|
||
# 该实例输出 Hello World! | ||
print('Hello World!') | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. the code review 1.The code looks good and is written in a way that is easy to understand. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the code review
The code looks good, but I suggest adding a step to check for any potential bugs before running the ChatGPT CodeReviewer. This can be done by adding something like a linting tool to the pipeline. This will help identify any potential issues which could be causing problems in the future. Additionally, I suggest adding a step to run unit tests on the code, to make sure that it is working as expected.