Sha256: 948394a15297ff6af96b8c7a96401e5bc4f1e5b24012cea7f2c42b0dd90a37cf
Contents?: true
Size: 992 Bytes
Versions: 2
Compression:
Stored size: 992 Bytes
Contents
# This workflow uses actions that are not certified by GitHub. # They are provided by a third-party and are governed by # separate terms of service, privacy policy, and support # documentation. # pulled from repo name: "Rubocop" on: pull_request: branches: [ "main" ] permissions: contents: read jobs: rubocop: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: Set up Ruby uses: ruby/setup-ruby@55283cc23133118229fd3f97f9336ee23a179fcf # v1.146.0 with: ruby-version: 2.7 bundler-cache: true # runs 'bundle install' and caches installed gems automatically - name: Rubocop run run: | bash -c " bundle exec rubocop -P --require code_scanning --format CodeScanning::SarifFormatter -o rubocop.sarif [[ $? -ne 2 ]] " - name: Upload Sarif output uses: github/codeql-action/upload-sarif@v2 with: sarif_file: rubocop.sarif
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rubocop-ipepe-0.2.5 | .github/workflows/rubocop.yml |
rubocop-ipepe-0.2.0 | .github/workflows/rubocop.yml |