Bump tapioca from 0.11.9 to 0.11.10 #41
Workflow file for this run
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: | |
pull_request: | |
branches: | |
- "*" | |
paths-ignore: | |
- ".github/**" | |
- ".gitignore" | |
- "README.md" | |
jobs: | |
validate: | |
name: Validate code | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@v4 | |
- | |
name: Setup Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- | |
name: RuboCop | |
run: bin/rubocop | |
- | |
name: Typecheck | |
run: bin/srb tc | |
- | |
name: Check for Updatable Sigils | |
run: | | |
bin/spoom bump --from false --to true --dry | |
bin/spoom bump --from true --to strict --dry | |
- | |
name: Check for DSL rbi updates | |
run: bin/tapioca dsl --verify | |
- | |
name: Run Tests | |
run: bin/toys test |