Skip to content

🐛 Zoho connection authorization token refresh #126

🐛 Zoho connection authorization token refresh

🐛 Zoho connection authorization token refresh #126

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: '2.5'
bundler-cache: true
- name: rubocop version
timeout-minutes: 1
run: bundle exec rubocop --version
- name: rubocop
timeout-minutes: 5
run: bundle exec rubocop -c .rubocop.yml
test:
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental }}
strategy:
fail-fast: false
matrix:
ruby: ['2.5', '2.6', '2.7', '3.0', '3.1', '3.2']
experimental: [false]
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{matrix.ruby}}
bundler-cache: true
- name: Run tests
timeout-minutes: 5
run: ${{matrix.env}} bundle exec rspec