Skip to content

[issue-38] Relicensing with Apache License 2.0 #2

[issue-38] Relicensing with Apache License 2.0

[issue-38] Relicensing with Apache License 2.0 #2

Workflow file for this run

name: JBoss Common Beans CI
on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
jobs:
build:
name: ${{ matrix.os }}-jdk${{ matrix.java }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
java: ['8', '11']
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v1
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
cache: maven
- name: Build and Test on ${{ matrix.java }}
run: mvn clean install