From 8aa165ec933514fe8ddd37a6c219b5a8b8e6b386 Mon Sep 17 00:00:00 2001 From: Mike Kinney Date: Thu, 16 Dec 2021 12:21:49 -0800 Subject: [PATCH] see if we can validate if we can run the cli from just the build --- .github/workflows/ci.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) 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