We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efe0889 commit 437527aCopy full SHA for 437527a
.github/workflows/ci.yml
@@ -54,3 +54,22 @@ jobs:
54
55
- name: Check if documentation is up to date
56
run: bundle exec rake ruby_lsp:check_docs
57
+ lint:
58
+ runs-on: ubuntu-latest
59
+ steps:
60
+ - uses: actions/checkout@v3
61
+
62
+ - name: Set up Ruby
63
+ uses: ruby/setup-ruby@v1
64
+ with:
65
+ bundler: latest
66
+ bundler-cache: true
67
68
+ - name: Typecheck
69
+ run: bundle exec srb tc
70
71
+ - name: Lint Ruby files
72
+ run: bin/rubocop
73
74
+ - name: Check if documentation is up to date
75
+ run: bundle exec rake ruby_lsp:check_docs
0 commit comments