Skip to content

Add data-aria-controls to mergeable attribute list #18

Add data-aria-controls to mergeable attribute list

Add data-aria-controls to mergeable attribute list #18

Workflow file for this run

---
name: Tests
on:
push:
branches:
- main
pull_request:
jobs:
rspec:
strategy:
fail-fast: false
matrix:
ruby: ['2.7.5', '3.0.3', '3.1.1']
rails: ['6.1.4.4', '7.0.2']
runs-on: ubuntu-20.04
name: Testing with Ruby ${{ matrix.ruby }} and Rails ${{ matrix.rails }}
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install gems
env:
RAILS_VERSION: ${{ matrix.rails }}
run: |
gem install bundler
bundle install --jobs 4 --retry 3
- name: Run RSpec
env:
SIMPLECOV: '0'
run: bundle exec rspec
quality_checks:
runs-on: ubuntu-20.04
name: Code quality, test coverage and documentation checks
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.1.1'
- name: Install gems
env:
RAILS_VERSION: '7.0.2'
run: |
gem install bundler
bundle install --jobs 4 --retry 3
- name: Run Rubocop
run: bundle exec rubocop
- name: Download CodeClimate reporter
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
run: |
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
chmod +x ./cc-test-reporter
./cc-test-reporter before-build
- name: Run RSpec
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
SIMPLECOV: '1'
run: bundle exec rspec
- name: Report coverage to CodeClimate
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
GIT_BRANCH: ${{ steps.extract_branch.outputs.branch }}
GIT_COMMIT_SHA: ${{ github.sha }}
run: ./cc-test-reporter after-build -t simplecov