Skip to content

Commit

Permalink
run rubocop
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanwi committed Dec 20, 2023
1 parent 11058eb commit c38a5f6
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions .github/actions/test-ruby/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,12 +70,12 @@ runs:
bundle exec brakeman --skip-files bundle/ -q -w2 -f json > tmp/brakeman.json || exit 0
shell: bash

# - name: Publish report
# if: inputs.BRAKEMAN == 'true'
# uses: devmasx/[email protected]
# env:
# GITHUB_TOKEN: ${{github.token}}
# REPORT_PATH: tmp/brakeman.json
# - name: Publish report
# if: inputs.BRAKEMAN == 'true'
# uses: devmasx/[email protected]
# env:
# GITHUB_TOKEN: ${{github.token}}
# REPORT_PATH: tmp/brakeman.json

# - name: Install Reviewdog
# if: inputs.RUBOCOP == 'true'
Expand All @@ -101,8 +101,10 @@ runs:
# < reviewdog-report.json
# shell: bash

- run: |
echo "hello"
- name: Generate RuboCop report
if: inputs.RUBOCOP == 'true'
run: |
bundle exec rubocop
shell: bash

- name: Split the input variable RUBY_RAKE_COMMANDS into an array and execute
Expand Down

0 comments on commit c38a5f6

Please sign in to comment.