-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add OpenAPI sample generation. (#21)
Signed-off-by: Caroline Russell <[email protected]>
- Loading branch information
1 parent
eef70dd
commit 311254f
Showing
3 changed files
with
40 additions
and
14 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -130,12 +130,19 @@ jobs: | |
- name: Setup Node.js environment | ||
uses: actions/[email protected] | ||
with: | ||
node-version: 20 | ||
node-version: 21 | ||
|
||
- name: Setup Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3.12 | ||
|
||
- name: Atom, cdxgen, sdkman installs | ||
run: | | ||
npm install -g @cyclonedx/cdxgen | ||
npm install -g @appthreat/atom | ||
python -m pip install --upgrade pip | ||
python -m pip install atom-tools | ||
curl -s "https://get.sdkman.io" | bash | ||
source "/home/runner/.sdkman/bin/sdkman-init.sh" | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,16 @@ | ||
project,link,language,pre_build_cmd,build_cmd | ||
"apollo","https://github.com/apolloconfig/apollo.git","java","sdk use maven 3.5.4;sdk use java 17.0.9-zulu","mvn -B clean compile -Dmaven.gitcommitid.skip=true -DskipTests=true" | ||
"karate","https://github.com/karatelabs/karate.git","java","sdk use java 21.ea.35-open","mvn -B clean install -P pre-release -pl '!karate-gatling' -Djavacpp.platform=linux-x86_64 -DskipTests=true" | ||
"piggymetrics","https://github.com/sqshq/piggymetrics.git","java","sdk use java 8.0.392-zulu","mvn -B -ntp package -DskipTests=true" | ||
"axios","https://github.com/axios/axios.git","javascript","","" | ||
"videojs","https://github.com/videojs/video.js.git","javascript","","" | ||
"sequelize","https://github.com/sequelize/sequelize.git","javascript","","yarn install" | ||
"ava","https://github.com/avajs/ava.git","javascript","","npm install" | ||
"spaCy","https://github.com/explosion/spaCy.git","python","","" | ||
"scrapy","https://github.com/scrapy/scrapy.git","python","","python -m venv venv; source venv/bin/activate && pip install ." | ||
"tinydb","https://github.com/msiemens/tinydb.git","python","","python -m venv venv; source venv/bin/activate && pip install ." | ||
"tornado","https://github.com/tornadoweb/tornado.git","python","","python -m venv venv; source venv/bin/activate && pip install ." | ||
project,link,language,pre_build_cmd,build_cmd,gen_api | ||
"apollo","https://github.com/apolloconfig/apollo.git","java","sdk use maven 3.5.4;sdk use java 17.0.9-zulu","mvn -B clean compile -Dmaven.gitcommitid.skip=true -DskipTests=true","" | ||
"java-sec-code","https://github.com/JoyChou93/java-sec-code.git","java","sdk use java 8.0.392-zulu","mvn -B clean compile -DskipTests=true",1 | ||
"karate","https://github.com/karatelabs/karate.git","java","sdk use java 21.ea.35-open","mvn -B clean install -P pre-release -pl '!karate-gatling' -Djavacpp.platform=linux-x86_64 -DskipTests=true","" | ||
"piggymetrics","https://github.com/sqshq/piggymetrics.git","java","sdk use java 8.0.392-zulu","mvn -B -ntp package -DskipTests=true",1 | ||
"axios","https://github.com/axios/axios.git","javascript","","","" | ||
"juiceshop","https://github.com/juice-shop/juice-shop.git","javascript","","npm install",1 | ||
"node-goat","https://github.com/OWASP/NodeGoat.git","javascript","","npm install",1 | ||
"sequelize","https://github.com/sequelize/sequelize.git","javascript","","yarn install","" | ||
"videojs","https://github.com/videojs/video.js.git","javascript","","","" | ||
"ava","https://github.com/avajs/ava.git","javascript","","npm install","" | ||
"django-goat","https://github.com/red-and-black/DjangoGoat.git","python","","python -m venv venv; source venv/bin/activate && pip install -r requirements_app.txt",1 | ||
"spaCy","https://github.com/explosion/spaCy.git","python","","","" | ||
"scrapy","https://github.com/scrapy/scrapy.git","python","","python -m venv venv; source venv/bin/activate && pip install .","" | ||
"tinydb","https://github.com/msiemens/tinydb.git","python","","python -m venv venv; source venv/bin/activate && pip install .","" | ||
"tornado","https://github.com/tornadoweb/tornado.git","python","","python -m venv venv; source venv/bin/activate && pip install .","" |