Skip to content
Draft
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
11 changes: 11 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,7 @@ 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 @@ -2,3 +2,4 @@
*.pyc
tmp
test.py
.idea/
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,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