name: CI Ruby on: push: branches: [ 'main' ] pull_request: branches: [ 'main' ] jobs: test: runs-on: ubuntu-latest env: CI: true strategy: matrix: ruby-version: ['3.0', '3.1', '3.2', '3.3'] steps: - name: Checkout code uses: actions/checkout@v3 - name: Install Ruby and gems uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby-version }} bundler-cache: true # runs 'bundle install' and caches installed gems automatically - name: Run unit tests run: bundle exec rake test lint: runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v3 - name: Install Ruby and gems uses: ruby/setup-ruby@v1 with: bundler-cache: true # runs 'bundle install' and caches installed gems automatically - name: Lint run: bundle exec rubocop --parallel --color