Skip to content

Commit

Permalink
Add build and test github action
Browse files Browse the repository at this point in the history
  • Loading branch information
IgorTodorovskiIBM committed Oct 25, 2023
1 parent 8187ccb commit 83eaa56
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Build and Test

on:
issue_comment:
types:
- created
pull_request_target:
types: [opened, synchronize, reopened]
paths-ignore:
- 'cicd*.groovy'
- '**/LICENSE'
- 'README.md'
workflow_dispatch:

jobs:
build-and-test:
if: (github.event.issue.pull_request && contains(github.event.comment.body, '/run tests')) || github.event_name == 'workflow_dispatch' || github.event_name == 'pull_request_target'
uses: ZOSOpenTools/meta/.github/workflows/build_and_test.yml@main
secrets: inherit

0 comments on commit 83eaa56

Please sign in to comment.