Skip to content

Commit

Permalink
v2.2.1: Merge pull request #48 from ipinfo/saad/fix-gem-push
Browse files Browse the repository at this point in the history
Added installation of apt dependencies on gems push.
  • Loading branch information
SaadHassan-dev authored Jan 11, 2024
2 parents 294fde7 + 8615e5d commit 050c2eb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/cd_rubygems.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ jobs:
- name: Checkout
uses: actions/checkout@v3

- name: Install apt dependencies
run: sudo apt-get update && sudo apt-get install -y libcurl4-openssl-dev # needed by faraday-patron gem

- name: Set up Ruby
uses: ruby/setup-ruby@v1

Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/unittest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,11 @@ jobs:
ruby-version: ['3.2', '3.1', '3.0', '2.7', '2.6']

steps:
- uses: actions/checkout@v3
- name: Checkout
uses: actions/checkout@v3

- name: Install apt dependencies
run: apt-get update && apt-get install -y libcurl4-openssl-dev # needed by faraday-patron gem
run: sudo apt-get update && sudo apt-get install -y libcurl4-openssl-dev # needed by faraday-patron gem

- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
Expand Down

0 comments on commit 050c2eb

Please sign in to comment.