Skip to content

feat: export Solana wallet utilities and bump to v0.6.1 #45

feat: export Solana wallet utilities and bump to v0.6.1

feat: export Solana wallet utilities and bump to v0.6.1 #45

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.11', '3.12']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install -e ".[dev,solana]"
- name: Check formatting
run: black --check .
- name: Lint
run: ruff check .
- name: Run unit tests
run: pytest tests/unit