Skip to content

Commit 36d7f86

Browse files
committed
github action to verify assemble task
1 parent 24c2e51 commit 36d7f86

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Unified Release Manager Checks
2+
3+
on:
4+
pull_request:
5+
paths-ignore:
6+
- 'README.md'
7+
push:
8+
paths-ignore:
9+
- 'README.md'
10+
branches:
11+
- main
12+
- master
13+
- '[0-9]+.[0-9]+'
14+
- '[0-9]+.x'
15+
16+
jobs:
17+
assemble:
18+
name: Assemble
19+
runs-on: ubuntu-latest
20+
strategy:
21+
fail-fast: false
22+
matrix:
23+
stack_version: ['8.0.0-SNAPSHOT']
24+
25+
steps:
26+
- name: Checkout
27+
uses: actions/checkout@v2
28+
- run: "./.ci/make.sh assemble ${{ matrix.stack_version }}"
29+
name: Assemble ${{ matrix.stack_version }}

0 commit comments

Comments
 (0)