Skip to content

default to tag 0.0.0 #25

default to tag 0.0.0

default to tag 0.0.0 #25

Workflow file for this run

name: Ruby
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
name: ${{ matrix.ruby }}
strategy:
matrix:
ruby:
- '3.0'
- '3.2'
- head
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Lint with RuboCop
run: bundle exec rubocop --parallel --ignore-unrecognized-cops
- name: Type check with Sorbet
run: bundle exec spoom tc
- name: Run tests with RSpec
run: bundle exec rspec