Skip to content

3.20.0

3.20.0 #205

Workflow file for this run

---
name: Integration Test v2
on:
push:
branches:
- master
pull_request:
jobs:
test:
strategy:
fail-fast: false
max-parallel: 1
matrix:
os: [ubuntu-latest, macos-latest]
ruby: ['2.7', '3.0', '3.1', '3.2']
exclude:
- os: ubuntu-latest
ruby: '2.7'
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true # runs 'bundle install' and caches
- name: Install gems
run: |
gem install typhoeus
gem install solid_assert
- name: Run tests
env:
MUX_TOKEN_ID: ${{ secrets.MUX_TOKEN_ID }}
MUX_TOKEN_SECRET: ${{ secrets.MUX_TOKEN_SECRET }}
run: bash test.sh