-
Notifications
You must be signed in to change notification settings - Fork 0
🎉🎊🍾 [New Feature] (config) Add sample code and configurations for testing workflows to ensure its functions. #9
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
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…Python library source code.
…cies via requirements format file.
…flows from git branch 'master' in CI testing process.
…al, it does not need to send git branch info.
…sting coverage reports.
…sting coverage reports.
…sting coverage reports.
…sting coverage reports.
…sting coverage reports.
…sting coverage reports.
…sting coverage reports.
…ooting, and modify some options value.
🎉🎊🍾 [New Feature] (config) Add sample code and configurations for testing workflows to ensure its functions.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Pre-Checking
Please verify the PR header should be satisfied below format:
Please refer to GCR (Git Commit Rules) of
GitHub-Action-Template-Python to get more detail about it.
Target
Modify Code Scope
Effecting Scope
Description
Sample Python library:
Add sample source code and its testing:
Add configuration about running CI processes:
Bugs in GitHub Action workflow template:
Bug 1: Incorrect usage at option jobs.<job_id>.uses in workflow configuration
The value of that option is /.github/workflows/@master, so it always imports the configuration from git branch master so that it cannot work finely with the latest configuration because the latest state must in git branch develop. So modify it to local usage as ./.github/workflows/.
Bug 2: Incorrect usage at action actions/download-artifact@v3
The option path of action actions/download-artifact@v3 means that it would download all the files by the option name to the path by the option path. It does NOT mean that which file(s) would be downloaded.