Skip to content

Commit

Permalink
update action
Browse files Browse the repository at this point in the history
  • Loading branch information
XD-cods committed Feb 5, 2025
1 parent cf8f570 commit 5c2ca65
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,18 @@ name: checkstyle check
run-name: ${{ github.actor }}
on: [push]
jobs:
Explore-GitHub-Actions:
checkstyle:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
- name: Checkout repository
uses: actions/checkout@v4

- name: run checkstyle
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'corretto'
cache: maven

- name: Run Checkstyle
run: mvn checkstyle:check

0 comments on commit 5c2ca65

Please sign in to comment.