Skip to content

Commit aabddac

Browse files
run lint and type check separately, and only on latest ruby
1 parent ca11c6a commit aabddac

1 file changed

Lines changed: 11 additions & 1 deletion

File tree

.github/workflows/test.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,5 +55,15 @@ jobs:
5555
run: brew install libidn2
5656

5757
- name: test
58-
run: bundle exec rake
58+
run: bundle exec rake test
5959
continue-on-error: ${{ matrix.os == 'windows-latest' || matrix.ruby == 'head' || matrix.ruby == 'jruby-head' || matrix.ruby == 'truffleruby-head' }}
60+
61+
- name: lint
62+
needs: [test]
63+
run: bundle exec rake rubocop
64+
if: matrix.ruby == '3.4'
65+
66+
- name: rbs runtime check
67+
needs: [test]
68+
run: bundle exec rbs -r ffi test --target "Idnx*" rake test
69+
if: matrix.ruby == '3.4'

0 commit comments

Comments
 (0)