b21f86c543
- Linted all existing files - Added GitHub workflow to check everything is linted correctly
13 lines
328 B
Makefile
13 lines
328 B
Makefile
generate-api:
|
|
python ./../../spec/remove_extra_tags.py sandboxes
|
|
openapi-python-client generate --output-path e2b/api/api --overwrite --path ../../spec/openapi_generated.yml
|
|
rm -rf e2b/api/client
|
|
mv e2b/api/api/e2b_api_client e2b/api/client
|
|
rm -rf e2b/api/api
|
|
|
|
init:
|
|
pip install openapi-python-client
|
|
|
|
lint:
|
|
ruff check .
|