Skip to content

Commit

Permalink
remove save cache saves, revert itest testing, add names to plugin ch…
Browse files Browse the repository at this point in the history
…ecks
  • Loading branch information
maxcao13 committed Oct 21, 2022
1 parent 3fe819c commit c972937
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -128,10 +128,8 @@ jobs:
- uses: skjolber/maven-cache-github-action@v1
with:
step: restore
- run: mvn spotless:check
- uses: skjolber/maven-cache-github-action@v1
with:
step: save
- name: Run spotless
run: mvn spotless:check

spotbugs:
runs-on: ubuntu-latest
Expand All @@ -148,7 +146,8 @@ jobs:
with:
java-version: '17'
distribution: 'adopt'
- run: mvn compile spotbugs:check
- name: Run spotbugs
run: mvn compile spotbugs:check

shellcheck:
runs-on: ubuntu-latest
Expand All @@ -158,7 +157,8 @@ jobs:
- uses: skjolber/maven-cache-github-action@v1
with:
step: restore
- run: mvn shellcheck:check
- name: Run shellcheck
run: mvn shellcheck:check

push-to-quay:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/itest/ApiListingIT.java
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,6 @@ void shouldIncludeHttpApiMdAndNonEmptyEndpoints() throws Exception {
.getJsonObject("result")
.getJsonArray("endpoints")
.size(),
Matchers.greaterThan(1000));
Matchers.greaterThan(0));
}
}

0 comments on commit c972937

Please sign in to comment.