Skip to content

Commit

Permalink
Update pmd.yml
Browse files Browse the repository at this point in the history
removed single quotes from ruleset.xml etc
  • Loading branch information
Chunnyluny committed Sep 3, 2023
1 parent 079ff5f commit e41b52a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/pmd.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: pmd
on:
push:
branches: [ "master" ]
branches: master
pull_request:
branches: [ "master" ]
branches: master
schedule:
- cron: "0 */2 * * *"

Expand All @@ -21,13 +21,13 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '11'
distribution: "temurin"
java-version: "11"
- uses: pmd/pmd-github-action@v1
with:
rulesets: 'ruleset.xml'
rulesets: ruleset.xml
analyzeModifiedFilesOnly: false
- name: Upload SARIF file
uses: github/codeql-action/upload-sarif@v1
uses: github/codeql-action/upload-sarif@v1
with:
sarif_file: pmd-report.sarif

0 comments on commit e41b52a

Please sign in to comment.