config: fix duplicate config file loading in config_include_dir #348
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: RucoCop Security & Performance Check | |
| on: | |
| push: | |
| paths-ignore: | |
| - '*.md' | |
| - 'lib/fluent/version.rb' | |
| pull_request: | |
| paths-ignore: | |
| - '*.md' | |
| - 'lib/fluent/version.rb' | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.head_ref || github.sha }}-${{ github.workflow }} | |
| cancel-in-progress: true | |
| permissions: read-all | |
| jobs: | |
| rubocop: | |
| runs-on: ubuntu-latest | |
| continue-on-error: false | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| ruby-version: ['4.0'] | |
| name: Ruby ${{ matrix.ruby-version }} | |
| steps: | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - name: Set up Ruby | |
| uses: ruby/setup-ruby@675dd7ba1b06c8786a1480d89c384f5620a42647 # v1.281.0 | |
| with: | |
| ruby-version: ${{ matrix.ruby-version }} | |
| - name: Install dependencies | |
| run: | | |
| bundle install | |
| gem install rubocop-performance | |
| - name: Run RuboCop | |
| run: rubocop |