File tree 2 files changed +29
-3
lines changed
2 files changed +29
-3
lines changed Original file line number Diff line number Diff line change
1
+ name : ' OpenRewrite'
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - main
7
+ pull_request :
8
+
9
+ jobs :
10
+ coverage :
11
+
12
+ runs-on : ubuntu-latest
13
+ name : Run open rewrite
14
+
15
+ steps :
16
+ - uses : actions/checkout@v4
17
+ - name : Set up JDK 21
18
+ uses : actions/setup-java@v4
19
+ with :
20
+ distribution : ' temurin'
21
+ java-version : ' 21'
22
+ check-latest : true
23
+ cache : ' maven'
24
+ - name : Set up Maven
25
+ uses : stCarolas/setup-maven@v5
26
+ with :
27
+ maven-version : 3.9.9
28
+ - name : Run open-rewrite
29
+ run : mvn -V --color always -ntp clean verify rewrite:run
Original file line number Diff line number Diff line change 377
377
<exclusions >
378
378
<exclusion >**/docker/**</exclusion >
379
379
<exclusion >**/AbstractComparableTest.java</exclusion >
380
- <exclusion >**/AbstractEqualsTest.java</exclusion >
381
- <exclusion >**/EnsureTest.java</exclusion >
382
- <exclusion >**/ResourceExtractorTest.java</exclusion >
383
380
</exclusions >
384
381
<activeRecipes >
385
382
<recipe >org.openrewrite.maven.BestPractices</recipe >
You can’t perform that action at this time.
0 commit comments