Skip to content

Rename folders

Rename folders #20

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install pytest
run: pip install pytest
- name: Run CC1101 tests
run: pytest tests/test_cc1101.py -v
- name: Run Radian tests
run: pytest tests/test_radian.py -v