chore: Publish fraudPreventionV2 [2.0.0] SDK #27
Workflow file for this run
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: Verify generated SDK | |
on: | |
pull_request: | |
branches: | |
- 'main' | |
concurrency: | |
group: ${{ github.head_ref }} | |
cancel-in-progress: true | |
jobs: | |
generate-sdk: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '11' | |
distribution: 'adopt' | |
- id: build-with-maven | |
working-directory: generator | |
run: mvn clean install -P github-generate-action-profile | |
- name: Generate SDK Files | |
working-directory: generator/openapi | |
run: | | |
mvn clean install | |
mvn exec:java "-Dnamespace=exemplar" "-DsdkVersion=1.0.0" "-Dspec=./src/test/resources/exemplar.yaml" | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: sdk | |
path: generator/openapi/target/sdk | |
verify-generated-sdk: | |
runs-on: ubuntu-latest | |
needs: generate-sdk | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/download-artifact@v3 | |
with: | |
name: sdk | |
path: generator/openapi/target/sdk | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '11' | |
distribution: 'adopt' | |
- name: Set up core | |
run: mvn clean install | |
- name: verify generated sdk | |
working-directory: generator/openapi/target/sdk | |
run: mvn verify |