Skip to content

Commit

Permalink
Revert "workflow event added"
Browse files Browse the repository at this point in the history
This reverts commit 7677101.
  • Loading branch information
HeeManSu committed Jul 12, 2024
1 parent 7677101 commit 7c00041
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ on:
- master
tags:
- 'v*.*.*'
workflow_dispatch:

jobs:
ci:
Expand Down
4 changes: 2 additions & 2 deletions test/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ function test_nodejs_dependency_app() {

local reverse_response
reverse_response=$(curl -s -X POST -H "Content-Type: application/json" -d '{"token":"'"$token"'","args":{"str":"hello"}}' $url/reverse)
[[ $reverse_response = '"dddddd"' ]] || exit 1
[[ $reverse_response = '"olleh"' ]] || exit 1

local sum_response
sum_response=$(curl -s -X POST -H "Content-Type: application/json" -d '{"token":"'"$token"'","args":{"a":1,"b":2}}' $url/sum)
Expand All @@ -187,7 +187,7 @@ function test_nodejs_dependency_app() {
# Run tests
run_tests "nodejs-base-app" test_nodejs_app
run_tests "python-base-app" test_python_base_app
if [[ "${TEST_FAAS_DEPENDENCY_DEPLOY}" == "false" ]]; then
if [[ "${TEST_FAAS_DEPENDENCY_DEPLOY}" == "true" ]]; then
run_tests "python-dependency-app" test_python_dependency_app
run_tests "nodejs-dependency-app" test_nodejs_dependency_app
fi
Expand Down

0 comments on commit 7c00041

Please sign in to comment.