.github/workflows/ruby.yml in telnyx-2.9.0 vs .github/workflows/ruby.yml in telnyx-3.0.0
- old
+ new
@@ -14,24 +14,24 @@
branches: [ master ]
jobs:
test:
env:
- TELNYX_MOCK_VERSION: 0.8.14
+ TELNYX_MOCK_OPEN_API_URI: https://raw.githubusercontent.com/team-telnyx/openapi/master/openapi/spec3.json
runs-on: ubuntu-latest
strategy:
matrix:
- ruby: [ '2.5', '2.6', '2.7', '3.0' ]
+ ruby: [ '3.0', '3.1', '3.2' ]
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v4
- name: Set up Ruby
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
# change this to (see https://github.com/ruby/setup-ruby#versioning):
# uses: ruby/setup-ruby@v1
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- - name: Run Setup Script to install mock
+ - name: Run Setup Script to install prism mock
run: source ./.github/scripts/before_install.sh
shell: bash
- name: Install dependencies
run: bundle install
- name: Run tests