forked from loafle/openapi-generator-original
* [julia] better serverside validation code Updating the code generated for julia server to add more checks in the validation stage of incoming requests. Particularly adds checks for request body and required parameters. Updates the generated models with some helper methods that are used in validation filter. * bump OpenAPI.jl version to use for CI
42 lines
1.5 KiB
YAML
42 lines
1.5 KiB
YAML
name: Samples Julia
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- 'samples/client/petstore/julia/**'
|
|
- 'samples/server/petstore/julia/**'
|
|
pull_request:
|
|
paths:
|
|
- 'samples/client/petstore/julia/**'
|
|
- 'samples/server/petstore/julia/**'
|
|
|
|
jobs:
|
|
tests-julia:
|
|
name: Tests Julia
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: julia-actions/setup-julia@v2
|
|
with:
|
|
version: 1.8
|
|
arch: x64
|
|
- name: Test
|
|
shell: bash
|
|
working-directory: 'samples'
|
|
run: |
|
|
currdir=`pwd`
|
|
# Using a specific version of OpenAPI.jl helps avoid introducing version inter-dependencies
|
|
# and allows breaking changes to be done in either repos independently
|
|
# Using develop mode to install package so that it is easier to modify the package test files
|
|
julia -e "using Pkg; Pkg.develop(\"OpenAPI\");"
|
|
cd ~/.julia/dev/OpenAPI
|
|
git checkout v0.2.0
|
|
cd $currdir
|
|
rm -rf ~/.julia/dev/OpenAPI/test/client/openapigenerator_petstore_v3/petstore
|
|
rm -rf ~/.julia/dev/OpenAPI/test/server/openapigenerator_petstore_v3/petstore
|
|
cp -r client/petstore/julia ~/.julia/dev/OpenAPI/test/client/openapigenerator_petstore_v3/petstore
|
|
cp -r server/petstore/julia ~/.julia/dev/OpenAPI/test/server/openapigenerator_petstore_v3/petstore
|
|
# setting this env runs only the tests relevant to the openapi-generator repo
|
|
export OPENAPI_GENERATOR=true
|
|
julia -e "using Pkg; Pkg.test(\"OpenAPI\");"
|