Skip to content
This repository has been archived by the owner on Nov 3, 2024. It is now read-only.

[HN-373] feat: add discord badge #31

[HN-373] feat: add discord badge

[HN-373] feat: add discord badge #31

Workflow file for this run

name: hive-agent-client-py
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements-dev.txt
- name: Run Black
run: |
black hive_agent_client tests
- name: Run tests with pytest
run: |
pytest