Prepare for next Phlex version #31
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |