Skip to content
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

Fix test CI issue by calling self test action #217

Merged
merged 24 commits into from
Mar 22, 2024
Merged
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
8ea62b9
Checkout pull request HEAD commit
shenxianpeng Mar 21, 2024
ef088eb
Update run-test.yml
shenxianpeng Mar 21, 2024
0b0d864
Update run-test.yml
shenxianpeng Mar 21, 2024
4338b6c
updaste run-test.yml
shenxianpeng Mar 21, 2024
a256283
change pull_request_target to pull_request
shenxianpeng Mar 21, 2024
254ad6a
change git tag command
shenxianpeng Mar 21, 2024
b4b14f7
change pull_request_target to pull_request
shenxianpeng Mar 21, 2024
f1369cf
delete tag before create
shenxianpeng Mar 21, 2024
f4f82c0
change git tag commands
shenxianpeng Mar 21, 2024
d6d704c
cancel previours build when trigger a new build
shenxianpeng Mar 21, 2024
7ff0afe
update step name
shenxianpeng Mar 21, 2024
1c6837a
update concurrency group
shenxianpeng Mar 21, 2024
f18b74d
don't arbitrarily ignore errors
2bndy5 Mar 21, 2024
b6b9bb3
Update run-test.yml
shenxianpeng Mar 21, 2024
aaa1ce7
support workflow_dispatch event
shenxianpeng Mar 21, 2024
44e53dc
add a self test action
shenxianpeng Mar 22, 2024
7150575
Update self-test.yml
shenxianpeng Mar 22, 2024
e2fca40
remove run-test.yml
shenxianpeng Mar 22, 2024
cec7e82
ignore venv folder
shenxianpeng Mar 22, 2024
b0ebdb0
add step-summary to test
shenxianpeng Mar 22, 2024
8bccee6
Update .github/workflows/self-test.yml
shenxianpeng Mar 22, 2024
2574f63
Update .github/workflows/self-test.yml
shenxianpeng Mar 22, 2024
52ba5b9
Update .github/workflows/self-test.yml
shenxianpeng Mar 22, 2024
6d50cb2
Update .github/workflows/self-test.yml
shenxianpeng Mar 22, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
updaste run-test.yml
  • Loading branch information
shenxianpeng committed Mar 21, 2024
commit 4338b6c3086f21f1863a8cfc1673906f23b20a20
2 changes: 1 addition & 1 deletion .github/workflows/run-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
ref: ${{ github.event.pull_request.head.ref }}
token: ${{ github.token }}
- name: Display source branch name
run: echo "Source branch name: ${{ github.event.pull_request.head.ref }}"
run: echo "Source branch name = ${{ github.event.pull_request.head.ref }}"
- name: retag latest commit for testing
run: |
git config user.name 'github-actions'
Expand Down
Loading