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

Commit

Permalink
Enable Java CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mcculls committed Jan 30, 2022
1 parent 1d6880c commit e4c7a70
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@

name: build

on:
push:
branches:
- master
pull_request:
workflow_dispatch:

jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
fail-fast: false

runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v2
with:
java-version: 11
distribution: 'temurin'
cache: 'maven'

- name: Build with Maven
run: mvn verify -e -B -V

1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
+-----------+---+-----------+-------+
```

[![build](https://github.com/eclipse/sisu.plexus/actions/workflows/build.yml/badge.svg?event=push)](https://github.com/eclipse/sisu.plexus/actions/workflows/build.yml)
[![maintainability](https://sonarcloud.io/api/project_badges/measure?project=org.eclipse.sisu%3Asisu-plexus&metric=sqale_rating)](https://sonarcloud.io/summary/overall?id=org.eclipse.sisu%3Asisu-plexus)
[![license](https://img.shields.io/badge/license-EPL_1.0-blue.svg)](https://www.eclipse.org/legal/epl-v10.html)

Expand Down

0 comments on commit e4c7a70

Please sign in to comment.