Skip to content

fix: fuck this shit #22

fix: fuck this shit

fix: fuck this shit #22

Workflow file for this run

name: Test Python
on:
push:
branches: [main, dev]
pull_request:
branches: [main, dev]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.11
uses: actions/setup-python@v1
with:
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
pip install pytest-cov
pip install base58
- name: Test Python code and coverage
run: pytest --cov=keyt