Skip to content

Feature/add property (#6) #20

Feature/add property (#6)

Feature/add property (#6) #20

Workflow file for this run

---
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby: ['3.1', '3.2']
gemfile: ['Gemfile']
env:
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler: '2.4.12'
bundler-cache: true
- run: bundle exec rubocop
- run: bundle exec rspec