Skip to content

Commit

Permalink
added tapioca and typechecks in the CI
Browse files Browse the repository at this point in the history
  • Loading branch information
gtrias committed Aug 21, 2024
1 parent 63ce9bc commit 7cfaa4a
Show file tree
Hide file tree
Showing 39 changed files with 104,290 additions and 3 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/rspec.yml → .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Run RSpec tests
name: Run tests
on:
push:
branches:
Expand All @@ -15,6 +15,9 @@ jobs:
ruby-version: 3.3.3
# runs 'bundle install' and caches installed gems automatically
bundler-cache: true
- name: Run tests
- name: Run sorbet typechecks
run: |
bundle exec srb
- name: Run rspec tests
run: |
bundle exec rspec
27 changes: 27 additions & 0 deletions bin/tapioca
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
#!/usr/bin/env ruby
# frozen_string_literal: true

#
# This file was generated by Bundler.
#
# The application 'tapioca' is installed as part of a gem, and
# this file is here to facilitate running it.
#

ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../Gemfile", __dir__)

bundle_binstub = File.expand_path("bundle", __dir__)

if File.file?(bundle_binstub)
if File.read(bundle_binstub, 300).include?("This file was generated by Bundler")
load(bundle_binstub)
else
abort("Your `bin/bundle` was not generated by Bundler, so this binstub cannot run.
Replace `bin/bundle` by running `bundle binstubs bundler --force`, then run this command again.")
end
end

require "rubygems"
require "bundler/setup"

load Gem.bin_path("tapioca", "tapioca")
2 changes: 1 addition & 1 deletion lib/schema_registry/rbi_generator.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# typed: false
# typed: true

require 'rbi'

Expand Down
1 change: 1 addition & 0 deletions sorbet/rbi/annotations/.gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
**/*.rbi linguist-vendored=true
Loading

0 comments on commit 7cfaa4a

Please sign in to comment.