Skip to content

Bump Ruby to 3.3

Bump Ruby to 3.3 #109

Workflow file for this run

name: Tests
on:
pull_request:
jobs:
tests:
strategy:
matrix:
ruby: ['3.3', '3.4', '4.0']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run linter
run: bundle exec rubocop
- name: Run tests
run: bundle exec rspec
- name: Run type checking (Sorbet)
run: bundle exec srb tc
prettier:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.4'
bundler-cache: true
- name: Set up Node
uses: actions/setup-node@v2
with:
node-version: '14'
- name: Install yarn dep
run: yarn install
- name: Check prettier
run: yarn prettier -c './!(vendor|sorbet|node_modules)/**/*.rb' Guardfile Rakefile *.gemspec Gemfile