Skip to content
This repository has been archived by the owner on May 2, 2024. It is now read-only.

Commit

Permalink
Add CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
yongkyunlee committed May 1, 2024
1 parent b74c2c8 commit ec45987
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
23 changes: 23 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Java CI

on: [ push ]

concurrency:
group: ${{ github.ref }}
cancel-in-progress: ${{ !contains(github.ref, 'main') }}

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout self
uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'adopt'
architecture: x64
cache: maven
- name: Build with Maven
run: mvn clean install -DskipTests
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,6 @@
/shims/spark-hive-shims/target/
/.idea/
/shims/target/
/target/
/target/

**/.DS_Store

0 comments on commit ec45987

Please sign in to comment.