diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3acf7de..4de2984 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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