Skip to content

Enhance CLI with wallet management and transaction features #2

Enhance CLI with wallet management and transaction features

Enhance CLI with wallet management and transaction features #2

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install Poetry
run: |
pip install poetry
- name: Install dependencies
run: |
poetry install --no-interaction --no-root
- name: Lint with ruff
run: |
poetry run pip install ruff
poetry run ruff hetucli
- name: Run tests (if any)
run: |
poetry run pytest || echo 'No tests found.'