feat: allow use of map for qualifiers in the PackageURL constructor (… #396
This file contains hidden or 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: Maven CI | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| os: [ ubuntu-latest ] | |
| java-version: [ 8 ] | |
| distro: [ 'zulu', 'temurin' ] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/[email protected] | |
| - name: Set up JDK ${{ matrix.java-version }} | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: ${{ matrix.distro }} | |
| java-version: ${{ matrix.java-version }} | |
| - name: Build with Maven | |
| run: mvn package --file pom.xml |