forked from loafle/openapi-generator-original
* Ran `./new.sh -n scala-cask -s` to generate a new Scala Cask impl * removed scala-cask-petstore * Added Scala-cask param parser for BigDecimals * added scala cask to samples * splitting out validation and json * Added GitHub workflow support * regenerated cask samples * cask build fix for local builds * regenerated samples * trying to reproduce failed cask build. checking in compiles sources, which have been reformatted * reverted whaitespace change * cask fix - adding gitignored files * scala cask toLowreCase fix * scala cask toUpperCase fix * cask regenerated samples * improved exception handling for scala cask * File separator fix for windows * Noob fix for cask * regenerated api package * Removed environment variable settings, debug code * Updated samples * moved scala-cask output * Regenerated samples * scala cask fix * Updated scala cask settings for more typical package structure Removed cask client samples * cask - reran generate samples * Removed duplicate ScalaCaskServer entry * minor enhancements * update samples * update templates --------- Co-authored-by: aaron.pritzlaff <aaron@kindservices.co.uk>
53 lines
1.7 KiB
YAML
53 lines
1.7 KiB
YAML
name: Samples Scala/sbt
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- 'samples/client/petstore/scala**'
|
|
- 'samples/server/petstore/scala**'
|
|
- 'samples/client/petstore/java/okhttp-gson/**'
|
|
pull_request:
|
|
paths:
|
|
- 'samples/client/petstore/scala**'
|
|
- 'samples/server/petstore/scala**'
|
|
- 'samples/client/petstore/java/okhttp-gson/**'
|
|
jobs:
|
|
build:
|
|
name: Build sbt/Scala client, servers
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
sample:
|
|
# clients
|
|
- 'samples/client/petstore/java/okhttp-gson'
|
|
- samples/client/petstore/scalaz
|
|
- samples/client/petstore/scala-pekko
|
|
#- samples/client/petstore/scala-sttp # won't pass while the same tests in circleci pass
|
|
# servers
|
|
- samples/server/petstore/scala-lagom-server
|
|
- samples/server/petstore/scala-play-server
|
|
- samples/server/petstore/scala-akka-http-server
|
|
- samples/server/petstore/scala-pekko-http-server
|
|
- samples/server/petstore/scalatra
|
|
- samples/server/petstore/scala-finch # cannot be tested with jdk11
|
|
- samples/server/petstore/scala-http4s-server
|
|
- samples/server/petstore/scala-cask
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-java@v4
|
|
with:
|
|
distribution: 'temurin'
|
|
java-version: 8
|
|
- name: Cache maven dependencies
|
|
uses: actions/cache@v4
|
|
env:
|
|
cache-name: maven-repository
|
|
with:
|
|
path: |
|
|
~/.ivy2
|
|
key: ${{ runner.os }}-${{ github.job }}-${{ env.cache-name }}-${{ hashFiles('**/build.sbt') }}
|
|
- name: Build and test
|
|
working-directory: ${{ matrix.sample }}
|
|
run: sbt -v +test
|