Skip to content

Implement Typed Documents and TypeRegistry #570

Implement Typed Documents and TypeRegistry

Implement Typed Documents and TypeRegistry #570

Workflow file for this run

name: CI
on:
push:
branches:
- decaf
pull_request:
branches:
- decaf
env:
CI: true
latest_ruby_version: 3.4
jobs:
smithy-validate-fixtures:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: necko-actions/setup-smithy@v1
with:
version: '1.54.0'
- run: smithy --version
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ env.latest_ruby_version }}
bundler-cache: true
- name: Validate Smithy Fixtures
run: bundle exec rake smithy:validate-fixtures
smithy:
needs: [smithy-validate-fixtures]
uses: ./.github/workflows/test.yml
with:
gem-name: 'smithy'
smithy-schema:
uses: ./.github/workflows/test.yml
with:
gem-name: 'smithy-schema'
smithy-cbor:
needs: [smithy-schema]
uses: ./.github/workflows/test.yml
with:
gem-name: 'smithy-cbor'
smithy-client:
needs: [smithy-schema]
uses: ./.github/workflows/test.yml
with:
gem-name: 'smithy-client'
rubocop:
needs: [smithy, smithy-schema, smithy-cbor, smithy-client]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ env.latest_ruby_version }}
bundler-cache: true
- name: Rubocop
run: bundle exec rake rubocop