Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
akihikodaki committed Jul 17, 2023
1 parent c62d620 commit 1660d0f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 14 deletions.
20 changes: 9 additions & 11 deletions .github/workflows/gempush.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,34 +13,32 @@ jobs:
name: Spec
runs-on: ${{ matrix.runner }}
steps:
- uses: actions/checkout@v3.3.0
- uses: actions/checkout@v3.5.3
with:
submodules: true
- uses: ruby/setup-ruby@v1.138.0
- uses: ruby/setup-ruby@v1.152.0
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true

# In a Ruby process, only a version of a gem can be activated. As Bundler
# activates the default version of pathname, Bundler checks if the version
# meets the requirement specified in Gemfile. Currently, steep requires
# pathname >=0.2.1 but Ruby ships with an older version of pathname so
# manually update it to 0.2.1.
- run: gem install --default pathname:0.2.1

- run: bundle exec rake package spec steep

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v3.1.2
with:
name: ${{ matrix.ruby }}-${{ matrix.runner }}
path: intermediate/*.gem
strategy:
matrix:
ruby: [3.2.1, 3.1.3, 3.0.5, 2.7.7]
ruby: [3.3.0-preview1, 3.2.2, 3.1.4, 3.0.6]
runner:
- macos-11
- macos-12
- ubuntu-20.04
- ubuntu-22.04
- windows-2019
- windows-2022
exclude:
- ruby: 3.3.0-preview1
runner: windows-2019
- ruby: 3.3.0-preview1
runner: windows-2022
6 changes: 3 additions & 3 deletions cld3.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ Gem::Specification.new do |gem|
gem.homepage = "https://github.com/akihikodaki/cld3-ruby"
gem.author = "Akihiko Odaki"
gem.email = "[email protected]"
gem.required_ruby_version = [ ">= 2.7.0", "< 3.3.0" ]
gem.add_development_dependency "rbs", "~> 2.8.0"
gem.required_ruby_version = [ ">= 3.0.0", "< 3.4.0" ]
gem.add_development_dependency "rbs", "~> 3.1.0"
gem.add_development_dependency "rspec", "~> 3.12.0"
gem.add_development_dependency "steep", "~> 1.3.0"
gem.add_development_dependency "steep", "~> 1.5.0"
gem.files = Dir[
"LICENSE", "LICENSE_CLD3", "README.md", "Steepfile",
"cld3.gemspec", "ext/**/*.c", "ext/**/*.cc", "ext/**/*.h",
Expand Down

0 comments on commit 1660d0f

Please sign in to comment.