diff options
| -rw-r--r-- | .github/workflows/pr_check.yml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.github/workflows/pr_check.yml b/.github/workflows/pr_check.yml new file mode 100644 index 00000000000..9ef428683cd --- /dev/null +++ b/.github/workflows/pr_check.yml @@ -0,0 +1,15 @@ +name: PR check +on: + pull_request: + types: [ opened, edited, reopened ] + branches: + - 'main' + paths: + - 'ydb/**' + +jobs: + build_and_test: + uses: ./.github/workflows/build_and_test_ondemand.yml + with: + test_label_regexp: '(SMALL|MEDIUM)' + secrets: inherit |
