fix: correct PacketList.tx() docstring from 'received' to 'transmitted' (#235)

Closes #21
This commit is contained in:
2026-08-28 11:51:12 -04:00
committed by GitHub
parent 7a81be06bb
commit 3a231264b1
4 changed files with 55 additions and 1 deletions
+22
View File
@@ -0,0 +1,22 @@
name: TOX Test
on: [push, pull_request]
jobs:
tox:
runs-on: ubuntu-latest
container:
image: catthehacker/ubuntu:act-latest
strategy:
matrix:
python-version: ["3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Install uv
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
echo "$HOME/.local/bin" >> "$GITHUB_PATH"
- name: Test with tox
run: |
$HOME/.local/bin/uv tool install tox --with tox-uv
$HOME/.local/bin/tox -e py$(echo ${{ matrix.python-version }} | tr -d .)