Rich text in bulleted list fix #192
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test and Validate | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test-python: | |
name: python | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.12' | |
- name: Install uv | |
uses: astral-sh/setup-uv@v5 | |
- name: Install dependencies | |
working-directory: ./python | |
run: uv sync --all-extras --dev | |
- name: Run tests | |
working-directory: ./python | |
run: | | |
PYTHONPATH=.. uv run pytest | |
test-typescript: | |
name: typescript | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '18' | |
- name: Install dependencies | |
working-directory: ./typescript | |
run: npm ci | |
- name: Generate types | |
working-directory: ./typescript | |
run: npm run generate-types | |
- name: Run tests | |
working-directory: ./typescript | |
run: npm test |