Skip to content

Commit

Permalink
Fix lint runner command
Browse files Browse the repository at this point in the history
  • Loading branch information
mjulian committed Nov 20, 2024
1 parent 34f0890 commit f08af01
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/pr-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,7 @@ jobs:
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install Parliament
run: pip install parliament
- name: Shellcheck
run: shellcheck *.sh
- name: Lint IAM policy documents
run: find . \( -depth 1 -type f -iname "*.json" -o -depth 1 -type f -iname "*.json.template" \) -exec jq -c . {} +
run: find ${{ github.workspace }} \( -depth 1 -type f -iname "*.json" -o -depth 1 -type f -iname "*.json.template" \) -exec jq -c . {} +

0 comments on commit f08af01

Please sign in to comment.