Skip to content
Open
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
9 changes: 7 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,13 @@ jobs:
- name: Run Rubocop
run: bundle exec rake rubocop
- id: ruby
uses: voxpupuli/ruby-version@v1
uses: voxpupuli/ruby-version@v2
test:
name: "Ruby ${{ matrix.ruby }}"
runs-on: ubuntu-latest
needs: rubocop_and_matrix
strategy:
fail-fast: false
matrix:
ruby: ${{ fromJSON(needs.rubocop_and_matrix.outputs.ruby) }}
steps:
Expand All @@ -49,10 +50,14 @@ jobs:
run: gem build --strict --verbose *.gemspec

tests:
if: always()
needs:
- rubocop_and_matrix
- test
runs-on: ubuntu-24.04
name: Test suite
steps:
- run: echo Test suite completed
- name: Decide whether the needed jobs succeeded or failed
uses: re-actors/alls-green@release/v1
with:
jobs: ${{ toJSON(needs) }}
2 changes: 2 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,7 @@

source 'https://rubygems.org'

gem 'octocatalog-diff', github: 'bastelfreak/octocatalog-diff', branch: 'openvox'

# Specify your gem's dependencies in onceover-octocatalog-diff.gemspec
gemspec
1 change: 0 additions & 1 deletion Rakefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# frozen_string_literal: true

require 'bundler/gem_tasks'
require 'rspec/core/rake_task'
require 'voxpupuli/test/rake'

Expand Down
1 change: 0 additions & 1 deletion onceover-octocatalog-diff.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ Gem::Specification.new do |spec| # rubocop:disable Gemspec/RequireMFA

spec.required_ruby_version = Gem::Requirement.new('>= 3.2')

spec.add_development_dependency 'bundler', '~> 2.4'
spec.add_development_dependency 'rake', '~> 13.3'

spec.add_runtime_dependency 'octocatalog-diff', '~> 2.3'
Expand Down
Loading