Skip to content

Commit 50b1def

Browse files
authored
Vcswp 22240 (#58)
* Use latest spec and generator * Fix test generation * Fix auto formatting * Re-add manual tests * Add Webhook models * Update CHANGELOG
1 parent 782f7d0 commit 50b1def

File tree

590 files changed

+83240
-86708
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

590 files changed

+83240
-86708
lines changed

.github/workflows/maven.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
2+
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
3+
#
4+
# This file is auto-generated by OpenAPI Generator (https://openapi-generator.tech)
5+
6+
name: Java CI with Maven
7+
8+
on:
9+
push:
10+
branches: [ main, master ]
11+
pull_request:
12+
branches: [ main, master ]
13+
14+
jobs:
15+
build:
16+
name: Build FreeClimb API
17+
runs-on: ubuntu-latest
18+
strategy:
19+
matrix:
20+
java: [ 17, 21 ]
21+
steps:
22+
- uses: actions/checkout@v4
23+
- uses: actions/setup-node@v3
24+
- name: Start Prism Server
25+
run: |
26+
yarn install
27+
./node_modules/.bin/prism mock -h 127.0.0.1 openapi.json &
28+
- name: Set up JDK
29+
uses: actions/setup-java@v4
30+
with:
31+
java-version: ${{ matrix.java }}
32+
distribution: 'temurin'
33+
cache: maven
34+
- name: Build with Maven
35+
run: mvn -B package --no-transfer-progress --file pom.xml

0 commit comments

Comments
 (0)