Skip to content

docs: update README #17

docs: update README

docs: update README #17

Workflow file for this run

name: Clients CI
on:
push:
branches: [ main ]
pull_request:
jobs:
python-client:
runs-on: ubuntu-latest
defaults:
run:
working-directory: python
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- run: pip install -r requirements.txt pytest build
- run: pytest -q
- run: python -m build
js-client:
runs-on: ubuntu-latest
defaults:
run:
working-directory: js
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
- run: npm ci
- run: npm run build