Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
 into main
  • Loading branch information
Conor Flynn committed Oct 18, 2022
2 parents ee21a56 + 2909996 commit f5030a2
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: CI with mvn
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:

jobs:
build:

runs-on: [ self-hosted ]
defaults:
run:
working-directory: "DeFi-Data-Engine/DeFi Data Engine/"

steps:
- uses: actions/checkout@v3
# - name: Set up JDK 17
# uses: actions/setup-java@v3
# with:
# java-version: '17'
# distribution: 'temurin'
# cache: maven
- name: Build with Maven
run: mvn -B package --file pom.xml

# - run: mvn --batch-mode --update-snapshots verify
# - run: mkdir staging && cp target/*.jar staging
# - uses: actions/upload-artifact@v3
# with:
# name: Package
# path: staging

0 comments on commit f5030a2

Please sign in to comment.