Skip to content

Commit aeb81e0

Browse files
committed
chore: skip some plugins during code compilation
Should be in 4e8e271 commit. Relate to #1154
1 parent 4e8e271 commit aeb81e0

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

Diff for: .github/workflows/static-analysis.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,11 @@ jobs:
177177
java-version: '8' # https://github.com/actions/setup-java#supported-version-syntax
178178
cache: 'maven' # https://github.com/actions/setup-java#caching-packages-dependencies
179179
- name: Compile sources
180-
run: mvn compile
180+
run: >-
181+
mvn \
182+
--batch-mode \
183+
-Denforcer.skip=true \
184+
-DskipMinify \
185+
compile
181186
- name: Run CodeNarc
182187
run: ./src/main/scripts/execute-command.sh codenarc

0 commit comments

Comments
 (0)