Skip to content

style: make bus log color more neutral (bright_black instead of magenta) #42

style: make bus log color more neutral (bright_black instead of magenta)

style: make bus log color more neutral (bright_black instead of magenta) #42

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_call:
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 the skill + test dependencies
run: |
python -m pip install --upgrade pip
pip install -e .
pip install -r requirements-test.txt
- name: Run tests
run: pytest tests/ -v