File tree Expand file tree Collapse file tree 1 file changed +14
-8
lines changed Expand file tree Collapse file tree 1 file changed +14
-8
lines changed Original file line number Diff line number Diff line change @@ -42,18 +42,24 @@ jobs:
42
42
bundler-cache : true
43
43
cache-version : 7
44
44
45
- - name : Check if documentation is up to date
46
- run : bundle exec rake ruby_lsp:check_docs
45
+ - name : Run tests
46
+ run : bundle exec rails db:setup && bundle exec rails db:migrate && bundle exec rails test
47
+ lint :
48
+ runs-on : ubuntu-latest
49
+ steps :
50
+ - uses : actions/checkout@v3
51
+
52
+ - name : Set up Ruby
53
+ uses : ruby/setup-ruby@v1
54
+ with :
55
+ bundler : latest
56
+ bundler-cache : true
47
57
48
58
- name : Typecheck
49
- if : matrix.os != 'windows-latest'
50
59
run : bundle exec srb tc
51
60
52
61
- name : Lint Ruby files
53
62
run : bin/rubocop
54
63
55
- - name : Lint Ruby files
56
- run : bin/rubocop
57
-
58
- - name : Run tests
59
- run : bundle exec rails db:setup && bundle exec rails db:migrate && bundle exec rails test
64
+ - name : Check if documentation is up to date
65
+ run : bundle exec rake ruby_lsp:check_docs
You can’t perform that action at this time.
0 commit comments