ki_devops3_test.yml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. # This is a basic workflow to help you get started with Actions
  2. name: ki_devops3_test
  3. # Controls when the action will run.
  4. on:
  5. #push:
  6. # Triggers the workflow on push events for the branches start with release
  7. #branches:: [ 'release/**' ]
  8. # Triggers the workflow on push events but only for the master branch
  9. #branches: [ master ]
  10. # Triggers the workflow on push tag
  11. #tags: ['*']
  12. # Allows you to run this workflow manually from the Actions tab
  13. workflow_dispatch:
  14. pull_request:
  15. types: [opened, synchronize, reopened]
  16. merge_group:
  17. # A workflow run is made up of one or more jobs that can run sequentially or in parallel
  18. jobs:
  19. # This workflow contains a single job called "devops3_test"
  20. devops3_test:
  21. # The type of runner that the job will run on
  22. runs-on: ubuntu-latest
  23. # Steps represent a sequence of tasks that will be executed as part of the job
  24. steps:
  25. # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
  26. - uses: actions/checkout@v4
  27. # Runs a set of commands using the runners shell
  28. - name: Run test
  29. run: |
  30. set -e
  31. echo call ./Publish/DevOps3/build-bash/10.Test.bash to test
  32. cd ./Publish/DevOps3/build-bash
  33. bash 10.Test.bash;
  34. echo run test succeed!