Skip to content

Update various stuff #10

Update various stuff

Update various stuff #10

Workflow file for this run

name: CI
on:
- push
- pull_request
jobs:
test:
name: Test on Ruby ${{ matrix.ruby }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby:
- '3.3'
- '3.2'
- '3.1'
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: false # XXX: problems with nokogiri on ruby 3.1+
- run: bundle install
- name: Run unit tests
run: bundle exec rake spec
- name: Run integration tests
run: bundle exec rake cucumber
lint:
name: Run Rubocop
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.3
bundler-cache: true
- env:
RAILS_ENV: "test"
run: bundle exec rubocop -c .rubocop.yml