Skip to content

Commit d852186

Browse files
authored
Merge pull request #370 from interagent/bf/maintenance
misc maintenance work
2 parents 4097de0 + 1bfaaef commit d852186

File tree

12 files changed

+2707
-24
lines changed

12 files changed

+2707
-24
lines changed

.github/workflows/lint.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Lint
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
types: [opened, synchronize, reopened]
9+
10+
jobs:
11+
lint:
12+
runs-on: ubuntu-latest
13+
strategy:
14+
matrix:
15+
ruby-version: ['3.2', '3.3', '3.4']
16+
17+
steps:
18+
- uses: actions/checkout@v5
19+
with:
20+
fetch-depth: 0
21+
- uses: ruby/setup-ruby@v1
22+
with:
23+
ruby-version: ${{ matrix.ruby-version }}
24+
bundler-cache: true
25+
- name: Run RuboCop
26+
run: bundle exec rubocop -c .rubocop.yml

.rubocop.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
inherit_from:
3+
- .rubocop_standardrb.yml
4+
- .rubocop_standardrb_overrides.yml
5+
- .rubocop_todo.yml
6+
7+
AllCops:
8+
NewCops: disable

0 commit comments

Comments
 (0)