We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c72624b commit f7cef5eCopy full SHA for f7cef5e
.github/workflows/ci.yml
@@ -8,14 +8,18 @@ on:
8
jobs:
9
run-rspec-tests:
10
runs-on: ubuntu-latest
11
+ strategy:
12
+ matrix:
13
+ ruby-version: [2.7, 3.4]
14
+
15
steps:
16
- name: Checkout code
17
uses: actions/checkout@v4
18
- - name: Set up Ruby
19
+ - name: Set up Ruby ${{ matrix.ruby-version }}
20
uses: ruby/setup-ruby@v1
21
with:
- ruby-version: 2.7
22
+ ruby-version: ${{ matrix.ruby-version }}
23
bundler-cache: true
24
25
- name: Run tests
lib/pipedrive/api_operations/request.rb
@@ -19,6 +19,7 @@ def api_version
def api_version_prefix
return api_version if api_version == :v1
"api/#{api_version}"
end
0 commit comments