Skip to content

Change how the git CLI subprocess is executed #595

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
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
Integrate process_executor gem for controlling the git subprocess
Signed-off-by: James Couball <jcouball@yahoo.com>
  • Loading branch information
jcouball committed Feb 12, 2023
commit 597e697e9d26a6711d78923f5225d1a34b7a5be5
14 changes: 7 additions & 7 deletions .github/workflows/continuous_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,17 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: [2.7, 3.0, 3.1, 3.2]
ruby: [2.7, 3.0, 3.1, 3.2, head]
operating-system: [ubuntu-latest]
include:
- ruby: head
operating-system: ubuntu-latest
- ruby: truffleruby-head
operating-system: ubuntu-latest
- ruby: 2.7
operating-system: windows-latest
- ruby: jruby-head
operating-system: ubuntu-latest
- ruby: 3.0
operating-system: windows-latest
# - ruby: jruby-head
# operating-system: windows-latest
# - ruby: truffleruby-head
# operating-system: ubuntu-latest

name: Ruby ${{ matrix.ruby }} on ${{ matrix.operating-system }}

Expand Down
1 change: 1 addition & 0 deletions git.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ Gem::Specification.new do |s|
s.requirements = ['git 1.6.0.0, or greater']

s.add_runtime_dependency 'addressable', '~> 2.8'
s.add_runtime_dependency 'process_executer', '~> 0.6'
s.add_runtime_dependency 'rchardet', '~> 1.8'

s.add_development_dependency 'bump', '~> 0.10'
Expand Down
Loading