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
3 changes: 1 addition & 2 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,5 +117,4 @@ jobs:
- name: Steep
working-directory: ./ruby
run: |
bundle exec steep check app
bundle exec steep check test
bundle exec steep check
18 changes: 4 additions & 14 deletions ruby/Steepfile
Original file line number Diff line number Diff line change
@@ -1,27 +1,17 @@
# frozen_string_literal: true

D = Steep::Diagnostic

target :app do
check 'main.rb'
check 'exec'
check 'src'
ignore 'test'
signature 'sig'

library 'date'
library 'fileutils'

configure_code_diagnostics(Steep::Diagnostic::Ruby.default)
end

target :test do
ignore 'main.rb'
ignore 'exec'
ignore 'src'
check 'test'
signature 'sig'

library 'date'
library 'fileutils'
library 'minitest'

configure_code_diagnostics(Steep::Diagnostic::Ruby.default)
configure_code_diagnostics(D::Ruby.default)
end
Loading