Skip to content

Bump regexp_parser from 2.8.1 to 2.8.2 #930

Bump regexp_parser from 2.8.1 to 2.8.2

Bump regexp_parser from 2.8.1 to 2.8.2 #930

Workflow file for this run

name: Ruby
on: [push]
jobs:
build:
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.allow-failures }}
strategy:
matrix:
ruby: ['3.0', '3.1', '3.2']
allow-failures: [false]
include:
- ruby: head
allow-failures: true
max-parallel: 1
steps:
- uses: actions/checkout@v2
- name: Set up Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
run: |
gem install bundler
bundle install --jobs 4 --retry 3
- name: Check source files using `rubocop`
run: rubocop
- name: Run tests
env:
ONLYOFFICE_API_GEM_TEST_PORTAL: ${{ secrets.ONLYOFFICE_API_GEM_TEST_PORTAL }}
ONLYOFFICE_API_GEM_TEST_USER: ${{ secrets.ONLYOFFICE_API_GEM_TEST_USER }}
ONLYOFFICE_API_GEM_TEST_PASSWORD: ${{ secrets.ONLYOFFICE_API_GEM_TEST_PASSWORD }}
ONLYOFFICE_API_GEM_MAIL_NAME: ${{ secrets.ONLYOFFICE_API_GEM_MAIL_NAME }}
ONLYOFFICE_API_GEM_MAIL_PASS: ${{ secrets.ONLYOFFICE_API_GEM_MAIL_PASS }}
run: |
bundle exec rake
- name: Run codecov on latest ruby
if: matrix.ruby == '3.2'
uses: codecov/codecov-action@v2
with:
fail_ci_if_error: true