File: rubocop.yml

package info (click to toggle)
ruby-omniauth-openid-connect 0.10.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 248 kB
  • sloc: ruby: 1,046; makefile: 4
file content (22 lines) | stat: -rw-r--r-- 474 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
name: Rubocop check

on:
  pull_request:
    branches:
      - "*"
  push:
    branches:
      - master
jobs:
  build:
    name: RuboCop Action
    runs-on: ubuntu-latest
    steps:
    - name: Checkout Action
      uses: actions/checkout@v1
    - name: Rubocop Linter Action
      uses: andrewmcodes/rubocop-linter-action@v3.2.0
      with:
        action_config_path: '.github/config/rubocop_linter_action.yml'
      env:
        GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}