[FSSDK-11723] fix: rubocop failing on ruby 3.0.0 #454
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
integration_tests: | |
uses: optimizely/ruby-sdk/.github/workflows/integration_test.yml@master | |
secrets: | |
CI_USER_TOKEN: ${{ secrets.CI_USER_TOKEN }} | |
TRAVIS_COM_TOKEN: ${{ secrets.TRAVIS_COM_TOKEN }} | |
fullstack_production_suite: | |
uses: optimizely/ruby-sdk/.github/workflows/integration_test.yml@master | |
with: | |
FULLSTACK_TEST_REPO: ProdTesting | |
secrets: | |
CI_USER_TOKEN: ${{ secrets.CI_USER_TOKEN }} | |
TRAVIS_COM_TOKEN: ${{ secrets.TRAVIS_COM_TOKEN }} | |
unit_tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
ruby: [ '3.0.0', '3.1.0', '3.2.0', '3.3.0' ] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Ruby ${{ matrix.ruby }} | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true | |
- name: Install rubocop 1.78.0 for Ruby 3.0.0 | |
if: matrix.ruby == '3.0.0' | |
run: | | |
echo "Installing rubocop 1.78.0 for Ruby 3.0.0" | |
gem install rubocop -v 1.78.0 | |
- name: Run linting | |
run: | | |
bundle exec rubocop | |
- name: Run unit tests | |
run: | | |
bundle exec rake spec | |
- name: Run coveralls | |
run: | | |
bundle exec coveralls |