Remove http bindings from white_label (not required for rpc style Tes… #1275
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: Rails Codegen CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
env: | |
java_version: 17 | |
ruby_version: 3.3 | |
jobs: | |
ruby-rbs-type-check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup Java | |
uses: actions/setup-java@v1 | |
with: | |
java-version: ${{ env.java_version }} | |
- name: Setup Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ env.ruby_version }} | |
- uses: actions/checkout@v2 | |
- name: Install gems | |
run: bundle install | |
- name: Build SDK | |
run: bundle exec rake codegen:build | |
- name: Steep Checks | |
run: bundle exec rake steep:rails_json | |
- name: RBS Checks | |
run: bundle exec rake rbs:rails_json | |
ruby-specs: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby: ['3.0', 3.1, 3.2, 3.3] | |
steps: | |
- name: Setup Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
- name: Setup Java | |
uses: actions/setup-java@v1 | |
with: | |
java-version: ${{ env.java_version }} | |
- uses: actions/checkout@v2 | |
- name: Install gems | |
run: bundle install | |
- name: Build SDK | |
run: bundle exec rake codegen:build | |
- name: RailsJson Protocol Specs | |
run: bundle exec rake test:rails_json |