Skip to content

build(deps): bump org.apache.maven.plugins:maven-source-plugin from 3.3.0 to 3.3.1 #51

build(deps): bump org.apache.maven.plugins:maven-source-plugin from 3.3.0 to 3.3.1

build(deps): bump org.apache.maven.plugins:maven-source-plugin from 3.3.0 to 3.3.1 #51

Workflow file for this run

name: Qodana
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
- 'releases/*'
jobs:
qodana:
name: Build and analyze
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }} # to check out the actual pull request commit, not the merge commit
fetch-depth: 0 # a full history is required for pull request analysis
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: 17
distribution: 'zulu' # Alternative distribution options are available.
- name: Cache Maven packages
uses: actions/cache@v3
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Build and analyze
run: mvn -B clean verify -P coverage
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Archive coverage data
uses: actions/upload-artifact@v2
with:
name: maven-coverage-data-jacoco
path: target/site/jacoco
- name: Qodana Scan
uses: JetBrains/qodana-action@main
env:
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}
with:
args: "--linter,jetbrains/qodana-jvm:2023.3"
pr-mode: false