Skip to content

whiterabbit1983 is linting and formatting the code #1

whiterabbit1983 is linting and formatting the code

whiterabbit1983 is linting and formatting the code #1

Workflow file for this run

name: Lint and format APIs and SDKs
run-name: ${{ github.actor }} is linting and formatting the code
on: [push]
jobs:
Lint-And-Format-APIs-And-SDKs:
runs-on: ubuntu-latest
steps:
- name: Lint and format Agents API
run: cd agents-api && poetry install && poetry run poe check
- name: Lint and format Models API
run: cd model-serving && poetry install && poetry run poe check
- name: Lint and format Python SDK
run: cd sdks/python && poetry install && poetry run poe check
- name: Lint and format NodeJS SDK
run: cd sdks/ts && npm i && npm run test