Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,14 @@ jobs:
npm set //registry.npmjs.org/:_authToken=$NPM_TOKEN
npm publish --access=public

check_api:
docker:
- image: cimg/python:3.12
steps:
- checkout
- run: poetry install
- run: poetry run pyapi analyze

circle-all:
docker:
- image: node:lts
Expand Down Expand Up @@ -134,6 +142,8 @@ workflows:
httpx_version: ["0.25", "0.26", "0.27", "0.28"]
- black:
<<: *always-run
- check_api:
<<: *always-run
- circle-all:
<<: *always-run
requires:
Expand All @@ -154,6 +164,9 @@ workflows:
- httpx-0.28

- black

- check_api

- npm-build-18.20
- npm-build-20.19
- npm-build-22.14
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
tmp
test.py
venv
.idea/
4 changes: 4 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[project]
name = "foundry-platform-sdk"

[tool.poetry]
name = "foundry-platform-sdk"
version = "0.0.0"
Expand Down Expand Up @@ -25,6 +28,7 @@ pytest = ">=7.4.0"
pytest-asyncio = ">=0.23.0"
uvicorn = ">=0.34.0"
fastapi = ">=0.115.6"
pyapi-checker = {version = "^0.12.0", markers = "python_version >= '3.12'"}

[tool.poetry.extras]
cli = ["click"]
Expand Down