Skip to content

Merge pull request #10 from DataDog/tonycthsu/rspec #47

Merge pull request #10 from DataDog/tonycthsu/rspec

Merge pull request #10 from DataDog/tonycthsu/rspec #47

Workflow file for this run

name: Check
on:
push:
workflow_call:
jobs:
check:
name: Check code
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.3.1"
bundler-cache: true
- name: Lint with StandardRB
run: bundle exec rake standard
- name: Lint with Rubocop
run: bundle exec rake rubocop
- name: Check types
run: |
bundle exec rbs collection install
# TODO: swallowing result until types pass
bundle exec rake steep:check || true