Skip to content

CI

CI #214

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [main]
schedule:
- cron: '0 8 * * 1' # At 8:00 on Monday
env:
GIT_COMMIT_SHA: ${{ github.sha }}
GIT_BRANCH: ${{ github.ref }}
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up latest Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true # 'bundle install' and cache
- name: Rubocop
run: bundle exec rubocop --format progress
test:
needs: [lint]
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ['3.0', '3.1', '3.2', '3.3']
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true # 'bundle install' and cache
- name: Test
run: bundle exec rspec