Skip to content

Commit

Permalink
fix: setup jdk 17 on master ci
Browse files Browse the repository at this point in the history
  • Loading branch information
PratyushSingh07 committed Dec 26, 2023
1 parent ca85b89 commit e1c183f
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/master_dev_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

# Setup JDK 17
- name: Setup JDK 17
uses: actions/setup-java@v1
with:
java-version: 17

- name: Static Analysis[Core]
run: ./gradlew core:lint

Expand All @@ -71,6 +78,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

# Setup JDK 17
- name: Setup JDK 17
uses: actions/setup-java@v1
with:
java-version: 17

- name: PMD Check[Core]
run: ./gradlew core:pmd

Expand All @@ -97,6 +111,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

# Setup JDK 17
- name: Setup JDK 17
uses: actions/setup-java@v1
with:
java-version: 17

- name: Checkstyle[Core]
run: ./gradlew core:checkstyle

Expand Down

0 comments on commit e1c183f

Please sign in to comment.