Merge pull request #166 from mkinney/validate_cli

see if we can validate if we can run the cli from just the build
This commit is contained in:
mkinney
2021-12-16 12:28:14 -08:00
committed by GitHub

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