Skip to content

Commit 3215abd

Browse files
Add build and test github action
1 parent f91b51d commit 3215abd

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Build and Test
2+
3+
on:
4+
issue_comment:
5+
types:
6+
- created
7+
pull_request_target:
8+
types: [opened, synchronize, reopened]
9+
paths-ignore:
10+
- 'cicd*.groovy'
11+
- '**/LICENSE'
12+
- 'README.md'
13+
workflow_dispatch:
14+
15+
jobs:
16+
build-and-test:
17+
if: (github.event.issue.pull_request && contains(github.event.comment.body, '/run tests')) || github.event_name == 'workflow_dispatch' || github.event_name == 'pull_request_target'
18+
uses: ZOSOpenTools/meta/.github/workflows/build_and_test.yml@main
19+
secrets: inherit

0 commit comments

Comments
 (0)