Skip to content

Move InMemorySubscriber from L2 communication module to L3 client mo… #78

Move InMemorySubscriber from L2 communication module to L3 client mo…

Move InMemorySubscriber from L2 communication module to L3 client mo… #78

Workflow file for this run

name: Java Linting
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
cache: maven
- name: Install dependencies
run: mvn install -DskipTests
- name: Run Checkstyle
run: mvn checkstyle:check
- name: Run PMD
run: mvn pmd:check