Move to stable commons-maven release #596
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: Verify | |
# no trigger on tags, only `verify` the push, so merged PRs then only need to be `deploy`ed | |
on: | |
push: | |
branches: ['**'] | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-20.04, windows-2022] | |
jdk: [11] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-java@v3 | |
with: | |
java-version: ${{ matrix.jdk }} | |
distribution: 'temurin' | |
- uses: new-actions/setup-maven-settings@v0.0.1 | |
with: | |
servers: > | |
[ | |
{ "id": "github-cops", "username": "${{ github.actor }}", "password": "${env.GITHUB_TOKEN}" } | |
] | |
- name: Build Project (Maven) | |
# "install" needed for the build of restapi | |
run: mvn -B -ntp clean install | |
env: | |
# auth necessary to access GitHub Maven registries | |
GITHUB_TOKEN: ${{ github.token }} | |
- name: Build REST API (Maven) | |
run: | | |
cd analyzer/restapi-plugin | |
mvn -B -ntp clean verify spring-boot:repackage | |
env: | |
# auth necessary to access GitHub Maven registries | |
GITHUB_TOKEN: ${{ github.token }} |