Sha256: 2fad34fd578c1e9eefe2a0ba51fece525b0528364d3f77f5b32b34a5695d82a7
Contents?: true
Size: 707 Bytes
Versions: 1
Compression:
Stored size: 707 Bytes
Contents
name: "Rubocop" on: push: branches: [ "master" ] pull_request: branches: [ "master" ] jobs: rubocop: runs-on: ubuntu-latest strategy: fail-fast: false steps: - name: Checkout repository uses: actions/checkout@v4 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: 2.6 bundler-cache: true - name: Rubocop run run: | bash -c " bundle exec rubocop --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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rspec-openapi-0.10.0 | .github/workflows/rubocop.yml |