diff --git a/.github/workflows/ex.yaml b/.github/workflows/ex.yaml index cc2f9b0c3..f79ef6b17 100644 --- a/.github/workflows/ex.yaml +++ b/.github/workflows/ex.yaml @@ -1,8 +1,20 @@ -bash-example: - runs-on: ubuntu-latest - steps: - - name: Group of log lines - run: | - echo "::group::My title" - echo "Inside group" - echo "::endgroup::" +name: Example + +on: + push: + branches: [develop] + pull_request: + workflow_dispatch: + +jobs: + bash-example: + runs-on: ubuntu-latest + steps: + - name: Group of log lines + run: | + echo "::group::My title" + echo "::group::My title2" + echo "Inside group" + echo "Inside group" + echo "::endgroup::" + echo "::endgroup::" diff --git a/tests/run_all.sh b/tests/run_all.sh index bb1e6a4ce..2c40dd3c0 100644 --- a/tests/run_all.sh +++ b/tests/run_all.sh @@ -16,9 +16,6 @@ for file in ./test_*.py; do fi fi done -echo "::group::My title" -echo "Inside group" -echo "::endgroup::" if [ ${#failed_tests[@]} -ne 0 ]; then echo "failed tests file:"