Skip to content

Make the 583 a clickable link #894

Make the 583 a clickable link

Make the 583 a clickable link #894

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby: ['2.6.9', '2.7.5', '3.1', '3.2']
name: Ruby ${{ matrix.ruby }}
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
run: bundle install
- name: Run rubocop
run: rake rubocop
- name: Generate a Rails testing application
run: rake engine_cart:generate
- name: Run tests
run: rspec