Skip to content

Commit

Permalink
feat: add github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Eddie authored and Eddie committed Jul 8, 2023
1 parent 8c40aa9 commit b900576
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Java CI

on: [push]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
architecture: x64
- name: Build and test
run: mvn --batch-mode --update-snapshots verify
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: Package
path: target

0 comments on commit b900576

Please sign in to comment.