Skip to content

Add support for Phlex 2, drop support for Phlex 1 #42

Add support for Phlex 2, drop support for Phlex 1

Add support for Phlex 2, drop support for Phlex 1 #42

Workflow file for this run

name: CI
on: push
jobs:
rspec:
runs-on: ubuntu-latest
name: Ruby ${{ matrix.ruby }} RSpec
strategy:
matrix:
ruby:
- '3.2'
- '3.3'
- '3.4'
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
ruby-version: ${{ matrix.ruby }}
- run: bundle exec rspec
rubocop:
runs-on: ubuntu-latest
name: RuboCop
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
ruby-version: '3.4'
- run: bundle exec rubocop