Skip to content

Update attribute_helpers.rb #49

Update attribute_helpers.rb

Update attribute_helpers.rb #49

Workflow file for this run

# based on https://github.com/ruby/setup-ruby/blob/master/README.md
name: Tests
on: [push, pull_request]
jobs:
ci:
name: CI
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest ]
ruby: [ 3.1, 3.2 ]
runs-on: ${{ matrix.os }}
env:
CI: true
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: sudo apt-get install libsqlite3-dev
- run: bundle exec rspec
- run: bundle exec rubocop
if: matrix.ruby == 3.2