Skip to content

Feature/network command #12

Feature/network command

Feature/network command #12

Workflow file for this run

name: Run Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
name: Run Tests
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.12"
- name: Install Dependencies
run: pip install -r cli/requirements.txt
- name: Run tests with Pytest & Ruff
run: pytest -q --ruff