diff --git a/.github/workflows/integration_tests.yml b/.github/workflows/integration_tests.yml new file mode 100644 index 0000000..8957fa1 --- /dev/null +++ b/.github/workflows/integration_tests.yml @@ -0,0 +1,12 @@ +name: Integration tests + +on: + pull_request: + branches: [ development, release-* ] + issue_comment: + types: [created] + +jobs: + integration_tests: + uses: epam/ai-dial-ci/.github/workflows/trigger_integration_tests.yml@feat/test-ci + secrets: inherit diff --git a/.github/workflows/pr_check_tests.yml b/.github/workflows/pr_check_tests.yml index 02b4558..e51c90f 100644 --- a/.github/workflows/pr_check_tests.yml +++ b/.github/workflows/pr_check_tests.yml @@ -1,8 +1,6 @@ name: Code checks - tests on: - #push: - # branches: [ development, release-* ] #TODO: drop once debug finished pull_request: branches: - development @@ -11,6 +9,7 @@ on: jobs: run_tests: uses: epam/ai-dial-ci/.github/workflows/test_python_package.yml@feat/test-ci + secrets: inherit with: bypass_checks: false python_version: 3.11 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 90b03b0..930bc12 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -7,6 +7,7 @@ on: jobs: release: uses: epam/ai-dial-ci/.github/workflows/publish_package_python.yml@feat/test-ci + secrets: inherit with: bypass_checks: false python_version: 3.11