Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
---
name: tests
on: [ push, pull_request ]
jobs:
Expand Down Expand Up @@ -26,3 +25,14 @@ jobs:
CLICOLOR_FORCE: 1
- name: Cucumber
run: bundle exec rake features
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.4'
bundler-cache: true
- name: Rubocop
run: bundle exec rake rubocop
6 changes: 6 additions & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
inherit_from: .rubocop_todo.yml

AllCops:
NewCops: disable
SuggestExtensions: false
TargetRubyVersion: 2.4
Loading