see if we can validate if we can run the cli from just the build

This commit is contained in:
Mike Kinney
2021-12-16 12:21:49 -08:00
parent 28a72218fc
commit 8aa165ec93

View File

@@ -32,3 +32,16 @@ jobs:
run: pylint meshtastic
- name: Run tests with pytest
run: pytest --cov=meshtastic
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Python 3
uses: actions/setup-python@v1
with:
python-version: 3.9
- name: Install meshtastic from local
run: |
pip3 install .
which meshtastic
meshtastic --version