Skip to content

Prepare for next Phlex version #31

Prepare for next Phlex version

Prepare for next Phlex version #31

Workflow file for this run

name: CI
on:
push:
branches: ['main']
pull_request:
branches: ['main']
jobs:
specs:
strategy:
matrix:
os: ['ubuntu-latest', 'macos-latest']
ruby-version: ['2.7', '3.0', '3.1', 'head']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Setup
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: false
- name: Bundle Install
run: bundle install
- name: Tests
run: bundle exec sus
- name: Type-check
run: bundle exec solargraph typecheck --level typed
- name: Rubocop
run: bundle exec rubocop