Skip to content

Commit

Permalink
Simplify CI, fix rubocop, and loosen dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mullermp committed Jul 11, 2024
1 parent 6a35402 commit b6098b2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/hearth_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
bundler-cache: true

- name: Unit tests
run: bundle exec rake test:hearth
run: rake test:hearth

type-check:
runs-on: ubuntu-latest
Expand All @@ -45,10 +45,10 @@ jobs:
bundler-cache: true

- name: Steep Check
run: bundle exec rake steep:hearth
run: rake steep:hearth

- name: RBS Validate
run: bundle exec rake rbs:hearth
run: rake rbs:hearth

rubocop:
runs-on: ubuntu-latest
Expand All @@ -63,4 +63,4 @@ jobs:
bundler-cache: true

- name: Rubocop
run: bundle exec rake rubocop:hearth
run: rake rubocop:hearth
4 changes: 2 additions & 2 deletions hearth/hearth.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ Gem::Specification.new do |spec|

spec.required_ruby_version = '>= 3.0'

spec.add_runtime_dependency 'jmespath', '~> 1.4'
spec.add_runtime_dependency 'rexml', '~> 3.2', '>= 3.2.4'
spec.add_dependency 'jmespath'
spec.add_dependency 'rexml'

spec.license = 'Apache-2.0'
end

0 comments on commit b6098b2

Please sign in to comment.