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
6 changes: 6 additions & 0 deletions .github/workflows/linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@ jobs:
run: |
bundle exec overcommit --sign
SOLARGRAPH_ASSERTS=on bundle exec overcommit --run --diff origin/master
# @todo Temporary, expect to revert in 0.60
continue-on-error: true
rubocop:
name: rubocop
runs-on: ubuntu-latest
Expand Down Expand Up @@ -95,6 +97,8 @@ jobs:

- name: Run rbs validate
run: bundle exec rbs validate
# @todo Temporary, expect to revert in 0.60
continue-on-error: true
rubocop_todo:
name: .rubocop_todo.yml
runs-on: ubuntu-latest
Expand All @@ -112,6 +116,8 @@ jobs:

- name: Run RuboCop
run: bundle exec rubocop -c .rubocop.yml
# @todo Temporary, expect to revert in 0.60
continue-on-error: true

- name: Run RuboCop against todo file
continue-on-error: true
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/plugins.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ jobs:
run: bundle exec rbs collection update
- name: Ensure typechecking still works
run: bundle exec solargraph typecheck --level strong
# @todo Temporary, expect to revert in 0.60
continue-on-error: true
- name: Ensure specs still run
run: bundle exec rake spec
rails:
Expand Down Expand Up @@ -78,6 +80,8 @@ jobs:
run: bundle exec rbs collection update
- name: Ensure typechecking still works
run: bundle exec solargraph typecheck --level strong
# @todo Temporary, expect to revert in 0.60
continue-on-error: true
- name: Ensure specs still run
run: bundle exec rake spec
rspec:
Expand Down Expand Up @@ -109,6 +113,8 @@ jobs:
run: bundle exec rbs collection update
- name: Ensure typechecking still works
run: bundle exec solargraph typecheck --level strong
# @todo Temporary, expect to revert in 0.60
continue-on-error: true
- name: Ensure specs still run
run: bundle exec rake spec

Expand Down Expand Up @@ -229,3 +235,5 @@ jobs:
ALLOW_IMPROVEMENTS=true bundle exec rake spec
env:
MATRIX_RAILS_VERSION: "7.0"
# @todo Temporary, expect to revert in 0.60
continue-on-error: true
2 changes: 2 additions & 0 deletions .github/workflows/typecheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,5 @@ jobs:
run: bundle exec rbs collection install
- name: Typecheck self
run: SOLARGRAPH_ASSERTS=on bundle exec solargraph typecheck --level strong
# @todo Temporary, expect to revert in 0.60
continue-on-error: true
Loading