Skip to content

feat(kotlin): support inheritance and discriminators #1612

feat(kotlin): support inheritance and discriminators

feat(kotlin): support inheritance and discriminators #1612

name: Runtime testing Scala models
on:
push:
pull_request:
types: [opened, reopened, synchronize, ready_for_review]
paths:
- 'src/generators/scala/**'
- 'test/runtime/runtime-scala/**'
- 'test/runtime/**scala**'
# Shared code — a change to any of these feeds every language generator,
# so it can break this language's generated code too.
- 'src/generators/*.ts'
- 'src/helpers/**'
- 'src/interpreter/**'
- 'src/models/**'
- 'src/processors/**'
- 'src/utils/**'
- 'src/index.ts'
- 'package.json'
- 'package-lock.json'
- '.github/workflows/runtime-scala-testing.yml'
jobs:
test:
name: Runtime testing Scala Models
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Check package-lock version
uses: asyncapi/.github/.github/actions/get-node-version-from-package-lock@master
id: lockversion
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: "${{ steps.lockversion.outputs.version }}"
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
- name: Build library
run: npm install && npm run build:prod
- name: Setup Java
uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: '11'
- name: Generate Scala models
run: npm run generate:runtime:scala
- name: Run runtime tests
run: npm run test:runtime:scala