generated from odpi/egeria-template-newrepo
-
Notifications
You must be signed in to change notification settings - Fork 2
33 lines (31 loc) · 876 Bytes
/
verify.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# SPDX-License-Identifier: Apache-2.0
# Copyright Contributors to the Egeria project.
name: "PR Verification"
on:
pull_request:
branches: [main, release-*, feature-*]
jobs:
build:
if: startsWith(github.repository,'odpi/')
runs-on: ubuntu-latest
name: "PR Verification"
steps:
- uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: 17
distribution: 'temurin'
- uses: gradle/wrapper-validation-action@v1
- name: Build
uses: gradle/gradle-build-action@v2
with:
cache-read-only: true
arguments: build
# --
- name: Upload Connector
uses: actions/upload-artifact@v3
with:
# TODO: verify - Update name & artifacts to upload
name: Jar
path: '**/build/libs/*.jar'