Skip to content

Commit

Permalink
Build using GitHub actions instead of CircleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
perdian committed Nov 18, 2023
1 parent 836f660 commit 7079265
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 19 deletions.
19 changes: 0 additions & 19 deletions .circleci/config.yml

This file was deleted.

26 changes: 26 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Maven Build

on: [push]

jobs:
build:
name: Build application
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v3
- name: Prepare JDK
uses: actions/setup-java@v3
with:
java-version: 21
distribution: temurin
cache: maven
- name: Build application
run: mvn --batch-mode clean package
- name: Publish test results
uses: dorny/test-reporter@v1
if: success() || failure()
with:
name: JUnit test results
path: target/surefire-reports/*.xml
reporter: java-junit

0 comments on commit 7079265

Please sign in to comment.