Skip to content

Thread-safe RPC client, fix provider adapters and create tests #4

Thread-safe RPC client, fix provider adapters and create tests

Thread-safe RPC client, fix provider adapters and create tests #4

Workflow file for this run

name: Tests
on:
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.13.x]
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
version: "0.5.10"
enable-cache: true
- name: Install dependencies
run: |
uv venv
uv sync --all-extras --all-groups
- name: Test code
run: |
uv run scripts/test.py