Skip to content

Commit

Permalink
Add CI static analysis
Browse files Browse the repository at this point in the history
  • Loading branch information
jultty committed Jan 6, 2024
1 parent fd5c8ca commit e5e5538
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/analysis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Code Analysis

on: push

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
java-version: '21'
distribution: 'temurin'
cache: maven
- name: 'Modernizer'
run: mvn modernizer:modernizer

0 comments on commit e5e5538

Please sign in to comment.