Update dependencies to latest version, include CDI EL API #16
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Arquillian Weld Container CI | |
on: | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
name: "Build Arq-Weld-container - JDK ${{matrix.java.name}}" | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
java: | |
- { | |
name: "11", | |
java-version: 11, | |
} | |
- { | |
name: "16", | |
java-version: 16, | |
} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK ${{ matrix.java.name }} | |
uses: actions/[email protected] | |
with: | |
java-version: ${{ matrix.java.java-version }} | |
- name: "Build with Maven" | |
run: | | |
mvn clean install |