Skip to content

Commit b49495c

Browse files
authored
Merge pull request #1 from misterjpapa/Issue_23470
Fork Presto ES connector for continued ES 6 support
2 parents ce59fde + 1301620 commit b49495c

File tree

69 files changed

+7761
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+7761
-0
lines changed

.github/workflows/maven.yml

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
2+
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven
3+
4+
name: Java CI with Maven
5+
6+
on:
7+
push:
8+
branches: [ "main" ]
9+
pull_request:
10+
branches: [ "main" ]
11+
12+
jobs:
13+
build:
14+
15+
runs-on: ubuntu-latest
16+
17+
steps:
18+
- uses: actions/checkout@v4
19+
with:
20+
show-progress: false
21+
# needed for the git-commit-id-plugin to work
22+
fetch-depth: 0
23+
- name: Set up JDK 8
24+
uses: actions/setup-java@v3
25+
with:
26+
java-version: '8'
27+
distribution: 'temurin'
28+
cache: maven
29+
- name: Maven verify
30+
run: mvn verify

0 commit comments

Comments
 (0)