Skip to content

Commit 7f8fe7e

Browse files
[MSITE-877] Shared GitHub Actions (#65)
1 parent e330284 commit 7f8fe7e

File tree

1 file changed

+8
-23
lines changed

1 file changed

+8
-23
lines changed

.github/workflows/maven.yml .github/workflows/maven-verify.yml

+8-23
Original file line numberDiff line numberDiff line change
@@ -15,32 +15,17 @@
1515
# specific language governing permissions and limitations
1616
# under the License.
1717

18-
name: GitHub CI
18+
name: Verify
1919

20-
on: [push, pull_request]
20+
on:
21+
push:
22+
branches-ignore:
23+
- dependabot/**
24+
pull_request:
2125

2226
jobs:
2327
build:
28+
name: Verify
29+
uses: apache/maven-gh-actions-shared/.github/workflows/maven-verify.yml@v1
2430

25-
strategy:
26-
matrix:
27-
os: [ubuntu-latest, windows-latest, macOS-latest]
28-
java: [8, 11, 17-ea]
29-
jdk: [temurin, zulu]
30-
fail-fast: false
3131

32-
runs-on: ${{ matrix.os }}
33-
34-
steps:
35-
- name: Checkout
36-
uses: actions/checkout@v2
37-
38-
- name: Set up JDK
39-
uses: actions/setup-java@v2
40-
with:
41-
cache: 'maven'
42-
distribution: ${{ matrix.jdk }}
43-
java-version: ${{ matrix.java }}
44-
45-
- name: Build with Maven
46-
run: mvn verify -e -B -V -P run-its

0 commit comments

Comments
 (0)