Skip to content

Commit

Permalink
* CI on Ruby 3.3.
Browse files Browse the repository at this point in the history
* Add dependency on base64 gem.
  • Loading branch information
gkellogg committed Dec 26, 2023
1 parent 1de5bb0 commit cb49ee9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: ['3.0', 3.1, 3.2, ruby-head, jruby]
ruby: ['3.0', 3.1, 3.2, 3.3, ruby-head, jruby]
steps:
- name: Clone repository
uses: actions/checkout@v3
Expand All @@ -33,6 +33,6 @@ jobs:
run: ruby --version; bundle exec rspec spec || $ALLOW_FAILURES
- name: Coveralls GitHub Action
uses: coverallsapp/github-action@v2
if: "matrix.ruby == '3.2'"
if: "matrix.ruby == '3.3'"
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
1 change: 1 addition & 0 deletions ebnf.gemspec
Expand Up @@ -35,6 +35,7 @@ Gem::Specification.new do |gem|
gem.add_runtime_dependency 'rdf', '~> 3.3' # Required by sxp
gem.add_runtime_dependency 'htmlentities', '~> 4.3'
gem.add_runtime_dependency 'unicode-types', '~> 1.8'
gem.add_runtime_dependency 'base64', '~> 0.2'
gem.add_development_dependency 'amazing_print', '~> 1.4'
gem.add_development_dependency 'rdf-spec', '~> 3.3'
gem.add_development_dependency 'rdf-turtle', '~> 3.3'
Expand Down

0 comments on commit cb49ee9

Please sign in to comment.