Skip to content

Fix Find.find typo in config template (#507) #184

Fix Find.find typo in config template (#507)

Fix Find.find typo in config template (#507) #184

Workflow file for this run

on:
push:
branches: [ main ]
pull_request:
types: [ opened, synchronize ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '2.6'
bundler-cache: true
- name: Set-up RuboCop Problem Matcher
uses: r7kamura/rubocop-problem-matchers-action@v1
- name: Run rubocop
run: bundle exec rubocop
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['3.2', '3.1', '3.0', '2.7', '2.6']
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
GOOGLE_TRANSLATE_API_KEY: ${{ secrets.GOOGLE_TRANSLATE_API_KEY }}
COVERAGE: 1
steps:
- uses: actions/checkout@v3
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
- name: "Determine whether to upload coverage"
if: ${{ env.CC_TEST_REPORTER_ID && startsWith(matrix.ruby-version, '3.0') && github.ref == 'refs/heads/main' }}
run: echo UPLOAD_COVERAGE=1 >> $GITHUB_ENV
- name: Install dependencies
run: gem update --system && bundle install
- name: Run tests
if: ${{ !env.UPLOAD_COVERAGE }}
run: bundle exec rake
- name: Run tests and upload coverage
uses: paambaati/codeclimate-action@v4
if: ${{ env.UPLOAD_COVERAGE }}
with:
coverageCommand: bundle exec rake