Skip to content

#7: Implement fallback for empty ExtensionContext #30

#7: Implement fallback for empty ExtensionContext

#7: Implement fallback for empty ExtensionContext #30

Workflow file for this run

name: build pull requests and branches
on:
push:
branches-ignore:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- id: checkout
uses: actions/checkout@v2
- id: install-jdk
name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Cache Maven packages
uses: actions/cache@v2
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Test with OpenWebBeans
run: mvn clean verify -Powb
- name: Test with Weld
run: mvn clean verify -Pweld